diff --git a/.forgejo/workflows/build-on-commit.yml b/.forgejo/workflows/build-on-commit.yml index e8f0d2e..8540656 100644 --- a/.forgejo/workflows/build-on-commit.yml +++ b/.forgejo/workflows/build-on-commit.yml @@ -9,7 +9,7 @@ on: jobs: build-and-publish: - runs-on: docker-builder + runs-on: [test-env] # Change the runner label to 'test-env' steps: - name: Checkout repository @@ -38,3 +38,7 @@ jobs: # Remove local images to save storage docker rmi $REPO_HOST/$REPO_PATH:${{ github.sha }} 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