Skip to content

Commit

Permalink
manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
sreya committed May 31, 2024
1 parent 0e259ea commit 99e0f43
Showing 1 changed file with 37 additions and 3 deletions.
40 changes: 37 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,11 @@ jobs:
- os: ubuntu-22.04
arch: linux/amd64
sha: cfce811006a27305071b1634ca8fe690392f5dcc205612e7b4e5bde411b7701e
arch-suffix: amd64
- os: depot-ubuntu-22.04-arm
arch: linux/arm64
sha: 4b475e7e7eed79708b2707a67d556a5d3c0bdaef0a1f341311d095d1b4b3e271
arch-suffix: arm64
runs-on: ${{ matrix.os }}
steps:
- name: Docker Login
Expand Down Expand Up @@ -77,14 +79,46 @@ jobs:
run: make -j ARCH=${{ matrix.arch }} SYSBOX_SHA=${{ matrix.sha }} build/image/envbox

- name: Tag Image
run: docker tag envbox ghcr.io/coder/envbox:${{ github.event.inputs.version }}
run: docker tag envbox ghcr.io/coder/envbox:${{ github.event.inputs.version }}-${{ matrix.arch-suffix }}

- name: Push Image
run: docker push ghcr.io/coder/envbox:${{ github.event.inputs.version }}
tag:
run: docker push ghcr.io/coder/envbox:${{ github.event.inputs.version }}-${{ matrix.arch-suffix }}
manifest:
runs-on: ubuntu-22.04
needs: release
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.event.inputs.commit }}
- name: Docker Login
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Create Manifest
run: |
docker manifest create ghcr.io/coder/envbox:${{ github.event.inputs.version }} \
--amend ghcr.io/coder/envbox:${{ github.event.inputs.version }}-amd64 \
--amend ghcr.io/coder/envbox:${{ github.event.inputs.version }}-arm64
- name: Push Manifest
run: docker manifest push ghcr.io/coder/envbox:${{ github.event.inputs.version }}

tag:
runs-on: ubuntu-22.04
needs: manifest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.event.inputs.commit }}
- name: Setup Git
run: |
git config --global user.email "[email protected]"
git config --global user.name "Coder CI"
- name: Tag and Push Commit
run: |
git tag -a ${{ github.event.inputs.version }} -m ${{ github.event.inputs.version }}
Expand Down

0 comments on commit 99e0f43

Please sign in to comment.