.gitea/workflows/docker-image.yml aktualisiert
Some checks failed
build-docker-image / build (push) Failing after 51s
Some checks failed
build-docker-image / build (push) Failing after 51s
This commit is contained in:
@@ -2,7 +2,7 @@ name: build-docker-image
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
branches: [ "master" ]
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
@@ -22,7 +22,9 @@ jobs:
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Short SHA
|
||||
run: echo "SHORT_SHA=${GITHUB_SHA::7}" >> $GITHUB_ENV
|
||||
run: |
|
||||
SHORT_SHA="$(printf '%.7s' "$GITHUB_SHA")"
|
||||
echo "SHORT_SHA=$SHORT_SHA" >> "$GITHUB_ENV"
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
Reference in New Issue
Block a user