Skip to content

Release 0.7.1

Release 0.7.1 #22

Workflow file for this run

name: Publish Package to npmjs
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: '16.x'
cache: yarn
registry-url: 'https://registry.npmjs.org'
scope: '@tf2pickup-org'
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn build
- name: Publish
run: yarn npm publish
env:
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}