-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from QXIP/github_action
Create build_push.yml
- Loading branch information
Showing
1 changed file
with
34 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,34 @@ | ||
name: 'Build and push container (GHCR / Dockerhub)' | ||
|
||
on: | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
inputs: | ||
TAG_NAME: | ||
description: 'Release Version Tag (0.0.0)' | ||
required: true | ||
jobs: | ||
node: | ||
name: 'Build & Publish Container' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4.1.1 | ||
with: | ||
ref: ${{ github.ref }} | ||
- name: Update Package to Release version | ||
uses: technote-space/package-version-check-action@v1.9.3 | ||
|
||
- name: Build and push to GHCR | ||
uses: docker/build-push-action@v5.0.0 | ||
with: | ||
platforms: linux/amd64 | ||
file: ./Dockerfile | ||
push: true | ||
tags: | | ||
ghcr.io/qxip/speech2hep:latest | ||
ghcr.io/qxip/speech2hep:${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }} | ||
labels: | | ||
dev.speech2hep.image.title=speech2hep | ||
dev.speech2hep.image.type=nodejs | ||
dev.speech2hep.image.version={{github.event.inputs.TAG_NAME || github.event.release.tag_name }} |