Skip to content

Commit 16c30a3

Browse files
committed
test
1 parent 7705c0e commit 16c30a3

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

.github/workflows/action.yaml

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
1-
name: Test
2-
description: 'composite run action'
3-
4-
runs:
5-
using: "composite"
6-
steps:
1+
on: [push]
2+
jobs:
3+
test:
4+
runs-on: ubuntu-latest
75
steps:
8-
- name: Echo
9-
shell: bash
10-
run: |
11-
echo Heyyyyy
6+
- uses: actions/github-script@v4
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

0 commit comments

Comments
 (0)