mirror of
https://github.com/luzifer-docker/argo-crypt.git
synced 2024-12-20 14:21:17 +00:00
Add publishing
This commit is contained in:
parent
95001487b6
commit
8da2f421e3
1 changed files with 47 additions and 0 deletions
47
.github/workflows/docker.yaml
vendored
Normal file
47
.github/workflows/docker.yaml
vendored
Normal file
|
@ -0,0 +1,47 @@
|
|||
---
|
||||
|
||||
name: CI Workflow
|
||||
|
||||
on: push
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
docker-publish:
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
show-progress: false
|
||||
|
||||
- name: Log into registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Docker Build
|
||||
run: |
|
||||
docker buildx build \
|
||||
--no-cache \
|
||||
--pull \
|
||||
--tag ghcr.io/${GITHUB_REPOSITORY,,}:latest \
|
||||
.
|
||||
|
||||
- name: Docker Push
|
||||
run: |
|
||||
docker push ghcr.io/${GITHUB_REPOSITORY,,}:latest
|
||||
if: ${{ github.ref == 'refs/heads/master' }}
|
||||
|
||||
...
|
Loading…
Reference in a new issue