-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add buildx workflow for building + uploading image to Docker Hub
- Loading branch information
Showing
3 changed files
with
63 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
.git | ||
.github | ||
*.env | ||
cli | ||
out | ||
node_modules | ||
uploads |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: buildx | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["go-tests", "web-tests", "vuln-scan"] | ||
branches: [main] | ||
types: | ||
- completed | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
on-success: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Wait for tests to succeed | ||
if: ${{ github.event.workflow_run.conclusion != 'success' && startsWith(github.ref, 'refs/tags') != true }} | ||
run: exit 1 | ||
- name: checkout code | ||
uses: actions/checkout@v2 | ||
- name: install buildx | ||
id: buildx | ||
uses: crazy-max/ghaction-docker-buildx@v1 | ||
with: | ||
version: latest | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_TOKEN }} | ||
- name: Login to ghcr.io | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: build and push the image | ||
if: startsWith(github.ref, 'refs/heads/main') && github.actor == 'benbusby' | ||
run: | | ||
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes | ||
docker buildx ls | ||
docker buildx build --push \ | ||
--tag benbusby/yeetfile:latest \ | ||
--platform linux/amd64,linux/arm/v7,linux/arm64 . | ||
docker buildx build --push \ | ||
--tag ghcr.io/benbusby/yeetfile:latest \ | ||
--platform linux/amd64,linux/arm/v7,linux/arm64 . | ||
- name: build and push tag | ||
if: startsWith(github.ref, 'refs/tags') | ||
run: | | ||
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes | ||
docker buildx ls | ||
docker buildx build --push \ | ||
--tag benbusby/yeetfile:${GITHUB_REF#refs/*/v}\ | ||
--platform linux/amd64,linux/arm/v7,linux/arm64 . | ||
docker buildx build --push \ | ||
--tag ghcr.io/benbusby/yeetfile:${GITHUB_REF#refs/*/v}\ | ||
--platform linux/amd64,linux/arm/v7,linux/arm64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters