-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docker build process for multi-platform builds
- added docker build github action - removed unnecessary multi-os golang targets - updated to golang 1.20 in go.mod
- Loading branch information
Showing
17 changed files
with
245 additions
and
143 deletions.
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
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,77 @@ | ||
name: "Docker Release" | ||
|
||
env: | ||
DOCKER_IMAGE: 'ghcr.io/na4ma4/traefik-acme' | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ${{ github.repository }} | ||
PLATFORMS: linux/amd64,linux/arm64 | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
docker: | ||
name: Docker | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Docker metadata | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: | | ||
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
flavor: | | ||
latest=auto | ||
tags: | | ||
type=ref,event=branch | ||
type=ref,event=pr | ||
type=semver,pattern={{version}} | ||
type=semver,pattern={{major}}.{{minor}} | ||
type=raw,value=latest,enable={{is_default_branch}} | ||
- name: Set up QEMU | ||
if: ${{ steps.meta.outputs.tags != '' }} | ||
uses: docker/setup-qemu-action@v3 | ||
with: | ||
platforms: ${{ env.PLATFORMS }} | ||
|
||
- name: Set up Docker Buildx | ||
if: ${{ steps.meta.outputs.tags != '' }} | ||
uses: docker/setup-buildx-action@v3 | ||
with: | ||
platforms: ${{ env.PLATFORMS }} | ||
|
||
- name: Docker Login | ||
if: ${{ steps.meta.outputs.tags != '' }} | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and Push Docker image | ||
if: ${{ steps.meta.outputs.tags != '' }} | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: ./ | ||
file: ./Dockerfile | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
platforms: ${{ env.PLATFORMS }} | ||
|
||
- name: Adding Docker Image Markdown Summary | ||
if: ${{ steps.meta.outputs.tags != '' }} | ||
run: | | ||
echo "### Docker Image Deployed to Registry 🚀" >> "${GITHUB_STEP_SUMMARY}" | ||
echo "" >> "${GITHUB_STEP_SUMMARY}" | ||
echo "${{ steps.meta.outputs.tags }}" >> "${GITHUB_STEP_SUMMARY}" |
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,43 @@ | ||
name: Cleanup on Closed Pull Request | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
|
||
jobs: | ||
# this job will only run if the PR has been merged | ||
merge_job: | ||
name: "Merged" | ||
if: github.event.pull_request.merged == true | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/delete-package-versions@v4 | ||
with: | ||
package-name: 'traefik-acme' | ||
package-type: 'container' | ||
min-versions-to-keep: 0 | ||
delete-only-untagged-versions: 'true' | ||
- uses: actions/delete-package-versions@v4 | ||
with: | ||
package-name: 'traefik-acme' | ||
package-type: 'container' | ||
package-version-ids: pr-${{ github.event.pull_request.number }} | ||
|
||
# this job will only run if the PR has been closed without being merged | ||
close_job: | ||
name: "Closed" | ||
if: github.event.pull_request.merged == false | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/delete-package-versions@v4 | ||
with: | ||
package-name: 'traefik-acme' | ||
package-type: 'container' | ||
min-versions-to-keep: 0 | ||
delete-only-untagged-versions: 'true' | ||
- uses: actions/delete-package-versions@v4 | ||
with: | ||
package-name: 'traefik-acme' | ||
package-type: 'container' | ||
package-version-ids: pr-${{ github.event.pull_request.number }} |
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
/artifacts/ | ||
/vendor/ | ||
/dist/ | ||
test/issue-52/*.pem | ||
testdata/issue-52/*.pem |
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.