We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16c30a3 commit d90fb89Copy full SHA for d90fb89
.github/workflows/action.yml
@@ -0,0 +1,4 @@
1
+runs:
2
+ using: composite
3
+ steps:
4
+ - uses: ./.github/conditional/tmp
.github/workflows/action.yaml renamed to .github/workflows/build2.yml
@@ -3,14 +3,16 @@ jobs:
test:
runs-on: ubuntu-latest
5
steps:
6
- - uses: actions/github-script@v4
+ - uses: actions/github-script@v5
7
with:
8
- github-token: none
9
script: |
10
var fs = require('fs');
11
try {
12
fs.mkdirSync('./.github/conditional/tmp', {recursive: true});
13
} catch {
14
}
15
fs.writeFileSync('./.github/conditional/tmp/action.yml', 'name: ciao');
16
- - uses: ./.github/conditional/tmp
+ - run: "pwd"
+ - run: "ls"
17
+ - run: "echo $GITHUB_WORKSPACE"
18
+ - run: "echo $HOME"
0 commit comments