File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1- on : # Run the workflow for each of the following event :
1+ on : # Run the workflow for each of the following events :
22 push : # - A branch is pushed or updated.
3- pull_request : # - A pull-request is openned or updated.
3+ pull_request : # - A pull-request is opened or updated.
44 workflow_dispatch : # - A manual run of the workflow is requested from the GitHub web interface.
55 release :
66 types : [created] # - A release is created.
1212 fail-fast : false # Don't stop all the workflows when one of them fails.
1313
1414 matrix :
15- os : [ubuntu-latest, windows-latest, macos-latest] # List of GitHuh Actions platform to run the workflow on
15+ os : [ubuntu-latest, windows-latest, macos-latest] # List of GitHub Actions platform to run the workflow on
1616
17- runs-on : ${{ matrix.os }} # Run the continous integration workflow on each OS listed in the matrix.
17+ runs-on : ${{ matrix.os }} # Run the continuous integration workflow on each OS listed in the matrix.
1818
1919 steps :
2020 # Check-out the repository
6666 echo MANIFEST_PATHNAME=$MANIFEST_PATHNAME >> $GITHUB_ENV
6767 echo MANIFEST_NAME=$(basename $MANIFEST_PATHNAME) >> $GITHUB_ENV
6868
69- # If this worklow was triggered by a release event, upload the release manifest as a GitHub release asset.
69+ # If this workflow was triggered by a release event, upload the release manifest as a GitHub release asset.
7070 - name : Upload release manifest
7171 if : (github.event_name == 'release')
7272 uses : actions/upload-release-asset@v1
You can’t perform that action at this time.
0 commit comments