-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,18 +71,21 @@ jobs: | |
# except the version with the `primary-key`, if it exists | ||
purge-primary-key: never | ||
|
||
- name: Configure github-actions bot | ||
if: github.event_name == 'push' | ||
run: | | ||
git config --global user.name github-actions | ||
git config --global user.email [email protected] | ||
${{ env.git_pull }} | ||
- name: Install packages & Build the action | ||
run: nix run .#install | ||
|
||
- name: Update docs | ||
run: nix run .#write | ||
|
||
- name: Commit & Push changes | ||
if: github.event_name == 'push' | ||
|
||
- name: Commit & push changes | ||
run: | | ||
git config --global user.name github-actions | ||
git config --global user.email [email protected] | ||
${{ env.git_pull }} --autostash | ||
git add dist | ||
git commit -m "action: build the action" || echo "" | ||
git add . | ||
|