Skip to content

Commit

Permalink
test: fix running container
Browse files Browse the repository at this point in the history
  • Loading branch information
ahwayakchih authored Jan 16, 2025
1 parent c2db4df commit fe2486d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/puppeteer-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,10 @@ jobs:
test:
runs-on: ubuntu-latest
needs: prepare
container: ${{ REGISTRY }}/${{ needs.prepare.outputs.name }}:${{ needs.prepare.outputs.version }}
# env variables are not available at this level, only in steps:
# https://github.com/actions/runner/issues/2394
# so registry has to be hardcoded
container: ghcr.io/${{ needs.prepare.outputs.name }}:${{ needs.prepare.outputs.version }}
steps:
- name: Self test
run: |
Expand Down

0 comments on commit fe2486d

Please sign in to comment.