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 298c5fa commit 10451a5Copy full SHA for 10451a5
.github/workflows/release-event-test.yml
@@ -29,6 +29,11 @@ jobs:
29
if: github.event.action == 'published'
30
runs-on: ubuntu-latest
31
steps:
32
+ - name: Test getting the release URL in a GitHub script
33
+ uses: actions/github-script@v3
34
+ with:
35
+ user-agent: actions/github-script for ${{github.repository}}
36
+ script: console.log(context);
37
- name: Create test file
38
run: |
39
echo "Hello, world! ${{github.event.release.name}}" > test.txt
@@ -45,7 +50,7 @@ jobs:
45
50
- name: Upload test files
46
51
uses: actions/github-script@v3
47
52
with:
48
- github-token: ${{secrets.GITHUB_TOKEN}}
53
+ #github-token: ${{secrets.GITHUB_TOKEN}}
49
54
user-agent: actions/github-script for ${{github.repository}}
55
script: |
56
const fs = require('fs').promises;
0 commit comments