Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
auchenberg committed Feb 20, 2021
1 parent f3c9cee commit 0a86eeb
Show file tree
Hide file tree
Showing 4 changed files with 2,582 additions and 8,102 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/auto_tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: butlerlogic/action-autotag@stable
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
tag_prefix: "v"
- uses: actions/checkout@v2
- uses: butlerlogic/action-autotag@stable
with:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
tag_prefix: 'v'
23 changes: 10 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,21 @@ name: Build

on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v1
with:
node-version: ${{ env.NODE_VERSION }}
- uses: actions/checkout@v2

- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm run test --if-present
- name: Setup node.js
uses: actions/setup-node@v2

- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm run test --if-present
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
- run: npm install
- uses: lannonbr/vsce-action@master
with:
args: "publish -p $VSCE_TOKEN"
args: 'publish -p $VSCE_TOKEN'
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
Loading

0 comments on commit 0a86eeb

Please sign in to comment.