Skip to content

Commit

Permalink
GH script test
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerauerbeck committed Apr 28, 2021
1 parent 790cf68 commit 422db41
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
steps:
- run: |
echo ${GITHUB_REF#refs/tags/}
echo ${GITHUB_REF}
echo "RELEASE=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- name: Auto-merge
uses: actions/github-script@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
var rel = process.env.RELEASE;
console.log(${RELEASE});
const { RELEASE } = env.process.RELEASE
console.log(`${RELEASE}`)

0 comments on commit 422db41

Please sign in to comment.