We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a38fa0 commit c1722edCopy full SHA for c1722ed
.github/workflows/tag-publish.yml
@@ -62,6 +62,8 @@ jobs:
62
name: Publish stable packages
63
if: github.event.release.target_commitish == 'test-package-publishing' && github.event.release.prerelease == false
64
runs-on: ubuntu-latest
65
+ env:
66
+ TEST_MSG: "asdf test"
67
steps:
68
- name: ⬇️ Checkout repo
69
uses: actions/checkout@v3
@@ -78,11 +80,12 @@ jobs:
78
80
with:
79
81
script: |
82
console.log("Context: ", context.payload)
- console.log("owner: ", context.payload.owner)
83
+ console.log("repo: ", context.payload.repository)
84
+ console.log("owner: ", context.payload.repository.owner)
85
86
github.rest.repos.updateRelease({
87
owner: "dbsystel",
88
repo: context.payload.repository.name,
89
release_id: context.payload.release.id,
- body: '👋 woo hoo!'
90
+ body: process.env.TEST_MSG
91
})
0 commit comments