2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00
Files
vue-select/.github/workflows/release.yml
Jeff Sagal 33104b5380 ci(semantic-release): switch to github actions (#1076)
* ci: fix semantic release

* ci(semantic-release): add github workflows

* ci(semantic-release): run steps in one job

* ci: remove travis config

* ci: update coveralls and bundlewatch configs

* ci: fix test coverage, remove bundlewatch config

* ci: bump config

* ci: bump bundlewatch

* ci(semantic-release): bump release workflow
2020-03-01 15:42:30 -08:00

29 lines
570 B
YAML

name: Release
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Test with Coverage
run: yarn test
- name: Build
run: yarn build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release