Skip to content

Commit

Permalink
fix(CI): Replaced Travis CI with GH workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
deluxetom committed Feb 11, 2022
1 parent a88154d commit 0c9fdb3
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ jobs:
release:
runs-on: ubuntu-latest

steps:
- name: 'Checkout'
uses: 'actions/checkout@v2'
steps:
- name: 'Checkout'
uses: 'actions/checkout@v2'

- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: 'Setup Node.js'
uses: 'actions/setup-node@v1'
with:
node-version: 12.x

- name: Install dependencies
run: npm i -g semantic-release@16 @semantic-release/changelog @semantic-release/git @semantic-release/changelog @semantic-release/commit-analyzer @semantic-release/release-notes-generator
- name: 'Install dependencies'
run: npm i -g semantic-release@16 @semantic-release/changelog @semantic-release/git @semantic-release/changelog @semantic-release/commit-analyzer @semantic-release/release-notes-generator

- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release
- name: 'Release'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release

0 comments on commit 0c9fdb3

Please sign in to comment.