Skip to content

Commit

Permalink
fix: allow regenerate action to continue with errors
Browse files Browse the repository at this point in the history
  • Loading branch information
HeitorAugustoLN committed Sep 30, 2024
1 parent 9c893d4 commit 17b4ee4
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/regenerate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,16 @@ jobs:
nix run .#betterfox-generator firefox
if [ ! -z $(git ls-files --others) ] || ! (git diff-index --quiet HEAD --); then git commit . -m "Re-extract firefox jsons"; fi
# - name: Generate librewolf files
# shell: bash
# run: |
# nix run .#betterfox-generator librewolf
# if [ ! -z $(git ls-files --others) ] || ! (git diff-index --quiet HEAD --); then git commit . -m "Re-extract librewolf jsons"; fi
- name: Generate librewolf files
shell: bash
continue-on-error: true
run: |
nix run .#betterfox-generator librewolf
if [ ! -z $(git ls-files --others) ] || ! (git diff-index --quiet HEAD --); then git commit . -m "Re-extract librewolf jsons"; fi
- name: Generate smoothfox files
shell: bash
continue-on-error: true
run: |
nix run .#betterfox-generator smoothfox
if [ ! -z $(git ls-files --others) ] || ! (git diff-index --quiet HEAD --); then git commit . -m "Re-extract smoothfox jsons"; fi
Expand Down

0 comments on commit 17b4ee4

Please sign in to comment.