Skip to content

Commit

Permalink
Attempting support for versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
treyrich committed Jul 16, 2024
1 parent df338f8 commit 4019d6f
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions .github/workflows/docker-publish-njsPC-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,23 @@ jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
treyrich2001/njspc
# generate Docker tags based on the following events/attributes
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

Expand All @@ -28,5 +45,5 @@ jobs:
with:
push: true
platforms: linux/amd64,linux/arm64,linux/arm/v7
tags: |
treyrich2001/njspc:latest
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 4019d6f

Please sign in to comment.