chore: downgrade artifact actions to v3 for gitea compatibility
Release / publish-release (push) Has been cancelled
Release / build_package (x86_64-pc-windows-gnu, exe) (push) Has been cancelled
CI / Build Windows (push) Has been cancelled
Release / check-release (push) Successful in 15s
Release / build_executable (convertis, x86_64-unknown-linux-musl) (push) Has been skipped
Release / build_executable (convertis.exe, x86_64-pc-windows-gnu) (push) Has been skipped
Release / build_executable (convertis, x86_64-unknown-linux-gnu) (push) Has been skipped
Release / build_package (x86_64-unknown-linux-gnu, deb-gnu) (push) Has been skipped
Release / build_package (x86_64-unknown-linux-gnu, rpm-gnu) (push) Has been skipped
Release / build_package (x86_64-unknown-linux-musl, deb-musl) (push) Has been skipped
Release / build_package (x86_64-unknown-linux-musl, rpm-musl) (push) Has been skipped
CI / Test (push) Successful in 1m17s
CI / Build Linux (push) Successful in 1m31s
Release / publish-release (push) Has been cancelled
Release / build_package (x86_64-pc-windows-gnu, exe) (push) Has been cancelled
CI / Build Windows (push) Has been cancelled
Release / check-release (push) Successful in 15s
Release / build_executable (convertis, x86_64-unknown-linux-musl) (push) Has been skipped
Release / build_executable (convertis.exe, x86_64-pc-windows-gnu) (push) Has been skipped
Release / build_executable (convertis, x86_64-unknown-linux-gnu) (push) Has been skipped
Release / build_package (x86_64-unknown-linux-gnu, deb-gnu) (push) Has been skipped
Release / build_package (x86_64-unknown-linux-gnu, rpm-gnu) (push) Has been skipped
Release / build_package (x86_64-unknown-linux-musl, deb-musl) (push) Has been skipped
Release / build_package (x86_64-unknown-linux-musl, rpm-musl) (push) Has been skipped
CI / Test (push) Successful in 1m17s
CI / Build Linux (push) Successful in 1m31s
This commit is contained in:
@@ -58,7 +58,7 @@ jobs:
|
|||||||
run: cargo build --release --target ${{ matrix.target }}
|
run: cargo build --release --target ${{ matrix.target }}
|
||||||
|
|
||||||
- name: Upload Executable Artifact
|
- name: Upload Executable Artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: bin-${{ matrix.target }}
|
name: bin-${{ matrix.target }}
|
||||||
path: target/${{ matrix.target }}/release/${{ matrix.binary }}
|
path: target/${{ matrix.target }}/release/${{ matrix.binary }}
|
||||||
@@ -84,7 +84,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Download compiled binary
|
- name: Download compiled binary
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: bin-${{ matrix.target }}
|
name: bin-${{ matrix.target }}
|
||||||
path: target/${{ matrix.target }}/release/
|
path: target/${{ matrix.target }}/release/
|
||||||
@@ -117,7 +117,7 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Upload Package Artifact
|
- name: Upload Package Artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: pkg-${{ matrix.type }}
|
name: pkg-${{ matrix.type }}
|
||||||
path: dist/*
|
path: dist/*
|
||||||
@@ -133,11 +133,9 @@ jobs:
|
|||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Download All Packages
|
- name: Download All Packages
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
pattern: pkg-*
|
|
||||||
path: all-packages/
|
path: all-packages/
|
||||||
merge-multiple: true
|
|
||||||
|
|
||||||
- name: Generate Changelog
|
- name: Generate Changelog
|
||||||
run: |
|
run: |
|
||||||
@@ -164,6 +162,6 @@ jobs:
|
|||||||
tag_name: v${{ needs.check-release.outputs.version }}
|
tag_name: v${{ needs.check-release.outputs.version }}
|
||||||
name: Release v${{ needs.check-release.outputs.version }}
|
name: Release v${{ needs.check-release.outputs.version }}
|
||||||
body_path: changelog.md
|
body_path: changelog.md
|
||||||
files: all-packages/*
|
files: all-packages/pkg-*/*
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
Reference in New Issue
Block a user