Compare commits

...
1 Commits
Author SHA1 Message Date
andrew a596d6a8fa standardizing gitea action files, attempting to build for arm64, and commenting on all differences.
Push Develop / docker (push) Successful in 1m14s
Sync GitHub / sync (push) Successful in 14s
Push Docker / docker (push) Successful in 58s
2026-06-17 12:13:08 -04:00
2 changed files with 6 additions and 4 deletions
+3 -2
View File
@@ -1,4 +1,4 @@
name: Push Docker name: Push Develop
on: on:
push: push:
@@ -28,8 +28,9 @@ jobs:
with: with:
context: . context: .
file: docker/Dockerfile file: docker/Dockerfile
# for this project, we keep docker in its own folder, to keep it isolated from upstream
push: true push: true
platforms: linux/amd64 platforms: linux/amd64,linux/arm64
tags: | tags: |
${{ vars.DOCKERHUB_TARGET }}:develop ${{ vars.DOCKERHUB_TARGET }}:develop
+3 -2
View File
@@ -3,7 +3,7 @@ name: Push Docker
on: on:
push: push:
tags: tags:
- '[0-9.]+-[0-9]+-[0-9]+' - '*-*-*'
# for this project, we do "YYYY-MM-DD" for version numbers, due to unversioned upstream # for this project, we do "YYYY-MM-DD" for version numbers, due to unversioned upstream
jobs: jobs:
@@ -28,8 +28,9 @@ jobs:
with: with:
context: . context: .
file: docker/Dockerfile file: docker/Dockerfile
# for this project, we keep docker in its own folder, to keep it isolated from upstream
push: true push: true
platforms: linux/amd64 platforms: linux/amd64,linux/arm64
tags: | tags: |
${{ vars.DOCKERHUB_TARGET }}:latest ${{ vars.DOCKERHUB_TARGET }}:latest
${{ vars.DOCKERHUB_TARGET }}:${{ github.ref_name }} ${{ vars.DOCKERHUB_TARGET }}:${{ github.ref_name }}