testing other approaches
Some checks failed
Build and Push to Forgejo Registry / build (push) Failing after 6s

This commit is contained in:
pika 2025-04-07 10:16:46 +02:00
parent 58ca66c5d5
commit a1080cce0c

View file

@ -10,17 +10,19 @@ jobs:
build:
runs-on: docker
steps:
# -
# name: Checkout code
# uses: actions/checkout@v4
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: git.k4li.de
username: ${{ vars.FORGEJO_USERNAME }}
password: ${{ secrets.FORGEJO_PASSWORD }}
name: Checkout code
uses: actions/checkout@v4
- name: Login to Forgejo Container Registry
run: |
echo "${{ secrets.FORGEJO_PASSWORD }}" | docker login git.k4li.de \
-u "${{ vars.FORGEJO_USERNAME }}" \
--password-stdin
- name: Running buildscript
run: |
./build.sh || echo "Error building docker image via script!"
# -
# name: Checkout