Skip to content

Commit 69cca32

Browse files
authored
Update main.yml: fix some typos (#13)
1 parent b03add1 commit 69cca32

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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.
@@ -12,9 +12,9 @@ jobs:
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
@@ -66,7 +66,7 @@ jobs:
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

0 commit comments

Comments
 (0)