Skip to content

Commit

Permalink
release: test
Browse files Browse the repository at this point in the history
  • Loading branch information
warm-coolguy committed Feb 5, 2024
1 parent 3beea30 commit f86fdf4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
echo "----- ----- ----- ----- -----"
echo "$RETURN_TAGS"
echo "----- ----- ----- ----- -----"
echo "TAGS<<EOF" >> $GITHUB_ENV
echo "TAGS=$RETURN_TAGS" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- uses: EndBug/add-and-commit@v9
Expand Down
4 changes: 3 additions & 1 deletion scripts/createRelease.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
const fs = require('fs')
const { getOctokit, context } = require('@actions/github')

const tags = process.argv.slice(2)
const tags = process.argv.slice(3)
const github = getOctokit(process.env.GITHUB_TOKEN)
const { owner, repo } = context.repo

console.warn(`-------------------------------${tags.join('')}`)

const camelize = (strings, all = false) =>
(all ? '' : strings[0]) +
strings
Expand Down

0 comments on commit f86fdf4

Please sign in to comment.