Skip to content
Open
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
12 changes: 7 additions & 5 deletions .github/workflows/toolchain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

runs-on: ubuntu-latest
container:
image: koreader/kobase:0.4.0-22.04
image: koreader/kobase:2.0.0-22.04

strategy:
fail-fast: false
Expand All @@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 1

Expand All @@ -37,8 +37,9 @@ jobs:
run: tar -C ~ -czf ${{ matrix.tc }}.tar.gz x-tools

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
archive: false
name: ${{ matrix.tc }}
path: ${{ matrix.tc }}.tar.gz

Expand All @@ -54,15 +55,16 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 1

- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
merge-multiple: true
path: artifacts
skip-decompress: true

- name: Create release
env:
Expand Down
Loading