Skip to content

Commit

Permalink
Add Submodules... maybe?
Browse files Browse the repository at this point in the history
  • Loading branch information
rcmaehl authored Oct 18, 2021
1 parent 8f81cbb commit 21d32f5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ncc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ jobs:
run: |
Start-Process autoit-v3-setup.exe -ArgumentList /S -NoNewWindow -Wait
Start-Process SciTE4AutoIt3.exe -ArgumentList /S -NoNewWindow -Wait
- name: Submodule update
run: |
git submodule init
git submodule update --remote --merge
- name: Compile
run: |
Start-Process "${env:ProgramFiles(x86)}\AutoIt3\AutoIt3.exe" "`"${env:ProgramFiles(x86)}\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.au3`" /NoStatus /prod /in NotCPUCores.au3" -NoNewWindow -Wait
Expand Down

4 comments on commit 21d32f5

@rcmaehl
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@micwoj92 I did it 😎

@micwoj92
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This can also be done in the checkout step
https://github.com/actions/checkout#usage

- uses: actions/checkout@v2
  with:
    submodules: true

@rcmaehl
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This can also be done in the checkout step https://github.com/actions/checkout#usage

- uses: actions/checkout@v2
  with:
    submodules: true

So just throw that under line 16?

- uses: actions/checkout@v2

@micwoj92
Copy link
Contributor

@micwoj92 micwoj92 commented on 21d32f5 Oct 19, 2021 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.