mirror of
https://code.forgejo.org/forgejo/runner.git
synced 2025-09-15 18:57:01 +00:00
fix: allow expressions in step and job uses: (#766)
Resolves forgejo/runner#764 <!--start release-notes-assistant--> <!--URL:https://code.forgejo.org/forgejo/runner--> - bug fixes - [PR](https://code.forgejo.org/forgejo/runner/pulls/766): <!--number 766 --><!--line 0 --><!--description Zml4OiBhbGxvdyBleHByZXNzaW9ucyBpbiBzdGVwIGFuZCBqb2IgdXNlczo=-->fix: allow expressions in step and job uses:<!--description--> <!--end release-notes-assistant--> Reviewed-on: https://code.forgejo.org/forgejo/runner/pulls/766 Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Co-authored-by: Earl Warren <contact@earl-warren.org> Co-committed-by: Earl Warren <contact@earl-warren.org>
This commit is contained in:
parent
b36d06e5cd
commit
65dd9d4998
2 changed files with 38 additions and 2 deletions
|
@ -60,6 +60,7 @@ jobs:
|
|||
steps:
|
||||
- run: exit 0
|
||||
if: success() || failure() || always()
|
||||
- uses: https://${{ secrets.PAT }}@example.com/action/here@v1
|
||||
`), &node)
|
||||
if !assert.NoError(t, err) {
|
||||
return
|
||||
|
@ -107,7 +108,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: code.forgejo.org/oci/node:22-bookworm
|
||||
uses: ./.github/workflows/build.yaml
|
||||
uses: ./.forgejo/workflows/${{ vars.PATHNAME }}
|
||||
with:
|
||||
STAGE: dev
|
||||
secrets:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue