Something went wrong. Try again.
The code and data behind xeiaso.net xeiaso.net
blog static-site go deno lume
Something went wrong. Try again.
1234567891011121314151617181920212223242526272829303132333435363738394041424344name: Dev container prebuild
on: push: branches: ["main"] tags: ["v*.*.*"]
jobs: devcontainer: runs-on: ubuntu-24.04 steps: - name: Checkout repository uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Set up QEMU uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
- name: Set up Docker Buildx uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 with: node-version: latest
- run: | sudo apt-get update sudo apt-get -y install skopeo
- name: Log into registry if: github.event_name != 'pull_request' uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 with: registry: ghcr.io username: xe password: ${{ secrets.GITHUB_TOKEN }}
- name: Pre-build dev container image uses: devcontainers/ci@8bf61b26e9c3a98f69cb6ce2f88d24ff59b785c6 # v0.3.1900000417 with: imageName: ghcr.io/xe/site/devcontainer cacheFrom: ghcr.io/xe/site/devcontainer push: always platform: linux/amd64,linux/arm64