We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 214b106 commit bb33687Copy full SHA for bb33687
action.yml
@@ -12,8 +12,5 @@ runs:
12
- name: Checkout
13
uses: actions/checkout@v5
14
- name: Execute some javascript
15
- uses: actions/github-script@v8
16
- with:
17
- script: |
18
- const { run } = await import('${{ github.action_path }}/dist/index.js')
19
- await run()
+ shell: ruby
+ run: ${{ github.action_path }}/foo.rb
foo.rb
@@ -0,0 +1 @@
1
+puts 'hello world'
0 commit comments