🏗️ Feature: Forgejo Actions Fourth Draft
This commit is contained in:
parent
b0f689414a
commit
58b8e8df02
1 changed files with 25 additions and 11 deletions
|
@ -24,17 +24,31 @@ jobs:
|
|||
- name: Testing..
|
||||
run: |
|
||||
echo "No Testing to do currently.."
|
||||
- name: Build image
|
||||
run: |
|
||||
podman build -t notatio .
|
||||
Push-Image:
|
||||
runs-on: website
|
||||
steps:
|
||||
- name: Push image to registry
|
||||
run: |
|
||||
podman login -u ${{ secrets.USERNAME }} -p ${{ secrets.PASSWORD }} docker.io
|
||||
podman push notatio ${{ env.registry }}:${{ env.TAG }}
|
||||
podman logout ${{ env.registry }}
|
||||
- name: Docker meta
|
||||
id: meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
# list of Docker images to use as base name for tags
|
||||
images: |
|
||||
notatio/notatio
|
||||
# generate Docker tags based on the following events/attributes
|
||||
tags: |
|
||||
type=semver,pattern={{version}}
|
||||
type=semver,pattern={{major}}.{{minor}}
|
||||
type=semver,pattern={{major}}
|
||||
type=sha
|
||||
- name: Login to Docker Hub
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
push: ${{ github.event_name != 'pull_request' }}
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
Cleanup:
|
||||
runs-on: website
|
||||
steps:
|
||||
|
|
Loading…
Reference in a new issue