Revert "🏗️ Feature: Forgejo Actions Fourth Draft"
This reverts commit 58b8e8df02
.
This commit is contained in:
parent
58b8e8df02
commit
d1c98f62d8
1 changed files with 11 additions and 25 deletions
|
@ -24,31 +24,17 @@ jobs:
|
||||||
- name: Testing..
|
- name: Testing..
|
||||||
run: |
|
run: |
|
||||||
echo "No Testing to do currently.."
|
echo "No Testing to do currently.."
|
||||||
- name: Docker meta
|
- name: Build image
|
||||||
id: meta
|
run: |
|
||||||
uses: docker/metadata-action@v5
|
podman build -t notatio .
|
||||||
with:
|
Push-Image:
|
||||||
# list of Docker images to use as base name for tags
|
runs-on: website
|
||||||
images: |
|
steps:
|
||||||
notatio/notatio
|
- name: Push image to registry
|
||||||
# generate Docker tags based on the following events/attributes
|
run: |
|
||||||
tags: |
|
podman login -u ${{ secrets.USERNAME }} -p ${{ secrets.PASSWORD }} docker.io
|
||||||
type=semver,pattern={{version}}
|
podman push notatio ${{ env.registry }}:${{ env.TAG }}
|
||||||
type=semver,pattern={{major}}.{{minor}}
|
podman logout ${{ env.registry }}
|
||||||
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:
|
Cleanup:
|
||||||
runs-on: website
|
runs-on: website
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Reference in a new issue