-
-
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.
* ci: add docker image build * tag slmix
- Loading branch information
Showing
1 changed file
with
38 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,38 @@ | ||
name: docker | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
paths: | ||
- '*/Dockerfile' | ||
- '.github/workflows/docker.yml' | ||
|
||
env: | ||
VERSION_SLMIX: v0.6.0 | ||
|
||
jobs: | ||
docker: | ||
env: | ||
IMAGE_NAME: ${{ github.repository }}/slmix | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Log into registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: "ghcr.io" | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build | ||
run: | | ||
docker build -t slmix | ||
- name: Tag and Push image | ||
if: github.event_name != 'pull_request' | ||
run: | | ||
docker tag slmix ghcr.io/${{ env.IMAGE_NAME }}:${{ env.VERSION_SLMIX }} | ||
docker tag slmix ghcr.io/${{ env.IMAGE_NAME }}:latest | ||
docker push ghcr.io/${{ env.IMAGE_NAME }}:${{ env.VERSION_SLMIX }} | ||
docker push ghcr.io/${{ env.IMAGE_NAME }}:latest | ||