Release workflow. Create new release only if there has been a commit … #139
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: [latest, master, v1.300.0] | |
step: [version] | |
# step: [version, npmExecuteScripts] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run action to show Project Piper version | |
uses: ./ | |
with: | |
piper-version: ${{ matrix.version }} | |
step-name: ${{ matrix.step }} | |
flags: "--verbose --noTelemetry" |