Update builds #183
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
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
name: Update builds | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Restore the node modules | |
uses: actions/cache@v3 | |
with: | |
path: '**/node_modules' | |
key: modules-${{ hashFiles('**/package.json') }} | |
- name: Install packages | |
run: npm i | |
- name: Download SQLite files | |
uses: robinraju/[email protected] | |
with: | |
latest: true | |
fileName: "*" | |
out-file-path: "build" | |
- name: Update builds | |
id: updator | |
run: | | |
OLDSTAMP=$(cat build/modified) | |
./update.sh | |
NEWSTAMP=$(cat build/modified) | |
CHANGED=$(($NEWSTAMP != $OLDSTAMP)) | |
echo "modified=${CHANGED}" >> "$GITHUB_OUTPUT" | |
- name: Publishing files | |
uses: softprops/action-gh-release@v1 | |
if: ${{ steps.updator.outputs.modified == '1' }} | |
with: | |
name: Latest build | |
tag_name: latest | |
files: build/** |