Skip to content

Commit

Permalink
point commit to master
Browse files Browse the repository at this point in the history
  • Loading branch information
ipitio committed Jul 25, 2024
1 parent 5950dfa commit e149dff
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
if: ${{ steps.update.outputs.updated == '0' }}
uses: EndBug/add-and-commit@v9
with:
add: "*.db,*.txt,README.md"
add: "*.db,*.txt,*.env,README.md"
message: "update database"
pull: "--autostash -s ours"

Expand All @@ -51,16 +51,16 @@ jobs:
if: ${{ steps.update.outputs.updated == '0' && steps.commit.outputs.committed == 'false' }}
uses: EndBug/add-and-commit@v9
with:
add: "*.db,*.txt,README.md"
add: "*.db,*.txt,*.env,README.md"
message: "update database"
pull: "--rebase --autostash -s ours"

- name: Save database
if: ${{ steps.commit.outputs.committed == 'true' || steps.rebase.outputs.committed == 'true' }}
if: ${{ steps.update.outputs.updated == '0' }}
uses: ncipollo/release-action@v1
with:
artifacts: "index.sql.zst,index.sql.d/*"
bodyFile: "CHANGELOG.md"
tag: "${{ steps.date.outputs.date }}"
commit: "${{ steps.commit.outputs.commit_long_sha }}"
commit: "master"
allowUpdates: true
8 changes: 4 additions & 4 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
if: ${{ steps.update.outputs.updated == '0' }}
uses: EndBug/add-and-commit@v9
with:
add: "*.db,*.txt,README.md"
add: "*.db,*.txt,*.env,README.md"
message: "update database"
pull: "--autostash -s ours"

Expand All @@ -56,16 +56,16 @@ jobs:
if: ${{ steps.update.outputs.updated == '0' && steps.commit.outputs.committed == 'false' }}
uses: EndBug/add-and-commit@v9
with:
add: "*.db,*.txt,README.md"
add: "*.db,*.txt,*.env,README.md"
message: "update database"
pull: "--rebase --autostash -s ours"

- name: Save database
if: ${{ steps.commit.outputs.committed == 'true' || steps.rebase.outputs.committed == 'true' }}
if: ${{ steps.update.outputs.updated == '0' }}
uses: ncipollo/release-action@v1
with:
artifacts: "index.sql.zst,index.sql.d/*"
bodyFile: "CHANGELOG.md"
tag: "${{ steps.date.outputs.date }}"
commit: "${{ steps.commit.outputs.commit_long_sha }}"
commit: "master"
allowUpdates: true

0 comments on commit e149dff

Please sign in to comment.