Skip to content

Commit

Permalink
TODO: DO NOT MERGE; REMOVE BEFORE
Browse files Browse the repository at this point in the history
  • Loading branch information
codebien committed Sep 5, 2023
1 parent f9497dc commit 89cb8de
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,15 @@ jobs:
fi
# Log into GitHub Container Registry
echo "${{ secrets.GITHUB_TOKEN }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin
- name: Publish k6:test-arm64-with-browser image to ghcr.io
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin
echo "Publish as ghcr.io/$GHCR_IMAGE_ID:test-arm64-with-browser"
docker buildx build --push \
--target with-browser \
--platform linux/amd64,linux/arm64 \
-t ghcr.io/$GHCR_IMAGE_ID:test-arm64-with-browser .
- name: Publish k6:master image to ghcr.io
if: ${{ github.ref == 'refs/heads/master' }}
run: |
Expand Down

0 comments on commit 89cb8de

Please sign in to comment.