Skip to content

fix(deps): update dependency @actions/core to v1.10.0 #1936

fix(deps): update dependency @actions/core to v1.10.0

fix(deps): update dependency @actions/core to v1.10.0 #1936

Workflow file for this run

name: workflow
on: push
jobs:
job:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v1
- name: Prepare
run: npm ci
- name: Lint
uses: mooyoul/tslint-actions@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
pattern: '*.ts'
- name: Build
run: npm run build
- name: Publish
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
run: npx semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}