Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/himbeles/kobold-token-get i…
Browse files Browse the repository at this point in the history
…nto main
  • Loading branch information
himbeles committed May 3, 2021
2 parents 3e5b3f0 + 22c5d61 commit 2264e4f
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This is a basic workflow to help you get started with Actions

name: Release

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
release:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
release:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@master
with:
node-version: 14
- name: install dependencies
run: npm install
- name: publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run publish

0 comments on commit 2264e4f

Please sign in to comment.