We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
workflow.yml
workflow.yml should look like this. As the V2 versions of the actions are deprecated.
name: CI on: push: branches: - master pull_request: branches: - develop - master jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: '14' - run: npm install - run: npm run build - name: Release env: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: npm run semantic-release
The text was updated successfully, but these errors were encountered:
No branches or pull requests
workflow.yml
should look like this. As the V2 versions of the actions are deprecated.The text was updated successfully, but these errors were encountered: