diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 333f9ac..99e9e92 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -61,7 +61,7 @@ jobs: - name: create artifact directory shell: bash run: | - directory=typst-${{ matrix.target }} + directory=canvas_syncer-${{ matrix.target }} mkdir $directory cp README LICENSE $directory if [ -f target/${{ matrix.target }}/release/canvas_syncer.exe ]; then @@ -75,14 +75,14 @@ jobs: - uses: actions/upload-artifact@v4 if: github.event_name == 'workflow_dispatch' with: - name: typst-${{ matrix.target }} - path: "typst-${{ matrix.target }}.*" + name: canvas_syncer-${{ matrix.target }} + path: "canvas_syncer-${{ matrix.target }}.*" retention-days: 3 - uses: ncipollo/release-action@v1.14.0 if: github.event_name == 'release' with: - artifacts: "typst-${{ matrix.target }}.*" + artifacts: "canvas_syncer-${{ matrix.target }}.*" allowUpdates: true omitNameDuringUpdate: true omitBodyDuringUpdate: true