Compare commits
8 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f4b6dd72c0 | ||
|
|
645f98a32c | ||
|
|
538084d177 | ||
|
|
3a9c9b6cc5 | ||
|
|
25e603b5b7 | ||
|
|
f7e7bacec3 | ||
|
|
92eafef713 | ||
|
|
bacaf1ff6a |
1 changed files with 39 additions and 0 deletions
39
.forgejo/workflows/publish.yml
Normal file
39
.forgejo/workflows/publish.yml
Normal file
|
|
@ -0,0 +1,39 @@
|
||||||
|
name: Create and publish a Docker image
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
docker:
|
||||||
|
runs-on: docker
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: write
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
# -
|
||||||
|
# name: Set up QEMU
|
||||||
|
# uses: docker/setup-qemu-action@v3
|
||||||
|
# -
|
||||||
|
# name: Set up Docker Buildx
|
||||||
|
# uses: docker/setup-buildx-action@v3
|
||||||
|
-
|
||||||
|
run: |
|
||||||
|
apt update; apt install --yes docker
|
||||||
|
-
|
||||||
|
name: Log in to the Container registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ${{ env.REGISTRY }}
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
# -
|
||||||
|
# name: Docker metadata
|
||||||
|
# id: meta
|
||||||
|
# uses: docker/metadata-action@v5
|
||||||
|
# with:
|
||||||
|
# images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||||
|
# -
|
||||||
|
# name: Build and push
|
||||||
|
# uses: https://github.com/docker/build-push-action@v6
|
||||||
|
# with:
|
||||||
|
# push: true
|
||||||
Loading…
Add table
Reference in a new issue