generated from oci/template
Update .forgejo/workflows/build-on-commit.yml
Some checks failed
Build Docker Image on Commit / build-and-publish (push) Failing after 4s
Some checks failed
Build Docker Image on Commit / build-and-publish (push) Failing after 4s
This commit is contained in:
parent
ec008a5b33
commit
84c9099be1
1 changed files with 5 additions and 1 deletions
|
@ -9,7 +9,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-publish:
|
build-and-publish:
|
||||||
runs-on: docker-builder
|
runs-on: [test-env] # Change the runner label to 'test-env'
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
@ -38,3 +38,7 @@ jobs:
|
||||||
# Remove local images to save storage
|
# Remove local images to save storage
|
||||||
docker rmi $REPO_HOST/$REPO_PATH:${{ github.sha }}
|
docker rmi $REPO_HOST/$REPO_PATH:${{ github.sha }}
|
||||||
docker rmi $REPO_HOST/$REPO_PATH:nightly
|
docker rmi $REPO_HOST/$REPO_PATH:nightly
|
||||||
|
|
||||||
|
- name: Say Hello World
|
||||||
|
run: |
|
||||||
|
echo "Hello World" # This will log "Hello World" to the GitHub Actions logs
|
||||||
|
|
Loading…
Reference in a new issue