forked from uncefact/tests-untp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cd): ghcr.io setup and docker image build workflow (uncefact#84)
* feat: add package workflow * fix: docker build target and args * fix: docker build target and args * fix: set docker build target to build * fix: docker build arg * fix: update conditions when package workflow is run
- Loading branch information
1 parent
ce873d4
commit 7a6d09c
Showing
1 changed file
with
51 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: package | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v[0-9]+.[0-9]+.[0-9]+" | ||
workflow_dispatch: | ||
|
||
env: | ||
CI: false | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: docker meta details | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: ghcr.io/${{github.repository}} | ||
flavor: | | ||
latest=auto | ||
tags: | | ||
type=edge,branch=next | ||
type=semver,pattern={{version}} | ||
type=sha | ||
- name: Set up Docker | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Login to Github Container Registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Push Release | ||
uses: docker/build-push-action@v5 | ||
with: | ||
push: ${{ startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/next' }} | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
target: build | ||
build-args: | | ||
CONFIG_FILE=./app-config.json | ||