v1.2.3 #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release GHPR Packages | |
on: | |
release: | |
types: [created] | |
jobs: | |
package-binary: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout Repository to Runner Context | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "20.x" | |
registry-url: "https://npm.pkg.github.com" | |
cache: "yarn" | |
scope: "@stormsinbrewing" | |
- name: Publish Binary to GitHub Packages | |
run: | | |
yarn install | |
yarn publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |