Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

missed some stuff #156

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,28 +45,30 @@ jobs:
- run: echo "${{ needs.GenTag.outputs.value }}" > ./build/revision
- run: sed -i "s@BUILD_VERSION_PLACEHOLDER@${{ needs.GenTag.outputs.value }}@" ./build/index.html
- run: bun run build-md5
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build-files-${{ needs.GenTag.outputs.value }}
path: ./build
- uses: actions/upload-artifact@v3
path: ./build/
- uses: actions/upload-artifact@v4
with:
name: build-md5-${{ needs.GenTag.outputs.value }}
path: ./buildZip
path: ./buildZip/md5sum
web:
needs:
- build
- GenTag
runs-on: ubuntu-latest
steps:
- name: get Build files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build-files-${{ needs.GenTag.outputs.value }}
path: ./build
- name: get md5
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build-md5-${{ needs.GenTag.outputs.value }}
path: ./buildZip/md5sum
- name: Generate zip
working-directory: ./build
run: zip -r Suwayomi-VUI-Web.zip ./*
Expand Down Expand Up @@ -102,7 +104,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: get Build files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build-files-${{ needs.GenTag.outputs.value }}
- name: Set up QEMU
Expand Down