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 effb864 commit 36f979dCopy full SHA for 36f979d
.github/workflows/action.yaml
@@ -4,4 +4,14 @@ jobs:
4
Explore-GitHub-Actions:
5
runs-on: ubuntu-latest
6
steps:
7
- - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
+ - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
8
+ - uses: actions/github-script@v4
9
+ with:
10
+ script: |
11
+ var fs = require('fs');
12
+ try {
13
+ fs.mkdirSync('./.github/conditional/tmp', {recursive: true});
14
+ } catch {
15
+ }
16
+ fs.writeFileSync('./.github/conditional/tmp/action.yml', 'name: Actions Demo');
17
+ - uses: ./.github/conditional/tmp
0 commit comments