mirror of
https://gitea.com/gitea/act_runner.git
synced 2026-08-14 06:51:52 +02:00
The runner is an application, not a library. `act/model` and `act/exprparser` were the last packages anything outside this repository consumed and they now live in actionslib, so nothing needs the rest of `act` to be importable, and keeping it importable invites the coupling that was just removed. Import paths only, the files are unchanged. Assisted-by: Codet:GPT-5.1-Codex
32 lines
993 B
YAML
32 lines
993 B
YAML
on: push
|
|
jobs:
|
|
# State saved in main (via the $GITHUB_STATE file and the ::save-state command) must surface
|
|
# as $STATE_* in the action's post step.
|
|
_:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ./actions/script
|
|
with:
|
|
main: |
|
|
echo mystate2=mystateval > $GITHUB_STATE
|
|
echo "::save-state name=mystate3::mystateval"
|
|
post: |
|
|
[ "$STATE_mystate2" = "mystateval" ]
|
|
[ "$STATE_mystate3" = "mystateval" ]
|
|
# State must be isolated per action instance even when two steps use the same action.
|
|
test-id-collision-bug:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ./actions/script
|
|
id: script
|
|
with:
|
|
main: echo mystate=val1 > $GITHUB_STATE
|
|
post: '[ "$STATE_mystate" = "val1" ]'
|
|
- uses: ./actions/script
|
|
id: pre-script
|
|
with:
|
|
main: echo mystate=val2 > $GITHUB_STATE
|
|
post: '[ "$STATE_mystate" = "val2" ]'
|