diawi-nodejs-uploader/.github/workflows/release.yaml

24 lines
434 B
YAML
Raw Normal View History

2020-09-25 05:44:07 +00:00
name: Release
on:
push:
branches:
- master
jobs:
test-and-release:
name: release
2020-09-25 05:50:26 +00:00
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.18.4]
2020-09-25 05:44:07 +00:00
steps:
2020-09-25 05:52:52 +00:00
- name: Install yarn
run: npm install -g yarn
2020-09-25 05:44:07 +00:00
- name: Install dependencies
2020-09-25 05:52:52 +00:00
run: yarn
2020-09-25 05:44:07 +00:00
- name: Release
2020-09-25 05:52:52 +00:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: yarn release