forked from stratum-mining/stratumprotocol.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request stratum-mining#229 from dennisreimann/update-actions
Update actions
- Loading branch information
Showing
2 changed files
with
24 additions
and
3 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Update submodule | ||
|
||
on: | ||
repository_dispatch: | ||
types: | ||
- update-submodule | ||
jobs: | ||
update: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.PAT }} | ||
submodules: recursive | ||
- name: Update module | ||
run: | | ||
git submodule update --init --recursive --checkout -f --remote -- "${{github.event.client_payload.module}}" | ||
git config --global user.name "GitHub Action" | ||
git config --global user.email "[email protected]" | ||
git commit -am "deploy: ${{github.event.client_payload.module}} - ${{github.event.client_payload.sha}}" | ||
git push |