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
29 lines
1.0 KiB
YAML
29 lines
1.0 KiB
YAML
on: push
|
|
jobs:
|
|
_:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
|
|
MYGLOBALENV3: myglobalval3
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: |
|
|
echo MYGLOBALENV1=myglobalval1 > $GITHUB_ENV
|
|
echo "::set-env name=MYGLOBALENV2::myglobalval2"
|
|
- uses: ./actions/script
|
|
with:
|
|
main: |
|
|
env
|
|
[[ "$MYGLOBALENV1" = "${{ env.MYGLOBALENV1 }}" ]]
|
|
[[ "$MYGLOBALENV1" = "${{ env.MYGLOBALENV1ALIAS }}" ]]
|
|
[[ "$MYGLOBALENV1" = "$MYGLOBALENV1ALIAS" ]]
|
|
[[ "$MYGLOBALENV2" = "${{ env.MYGLOBALENV2 }}" ]]
|
|
[[ "$MYGLOBALENV2" = "${{ env.MYGLOBALENV2ALIAS }}" ]]
|
|
[[ "$MYGLOBALENV2" = "$MYGLOBALENV2ALIAS" ]]
|
|
[[ "$MYGLOBALENV3" = "${{ env.MYGLOBALENV3 }}" ]]
|
|
[[ "$MYGLOBALENV3" = "${{ env.MYGLOBALENV3ALIAS }}" ]]
|
|
[[ "$MYGLOBALENV3" = "$MYGLOBALENV3ALIAS" ]]
|
|
env:
|
|
MYGLOBALENV1ALIAS: ${{ env.MYGLOBALENV1 }}
|
|
MYGLOBALENV2ALIAS: ${{ env.MYGLOBALENV2 }}
|
|
MYGLOBALENV3ALIAS: ${{ env.MYGLOBALENV3 }} |