mirror of https://github.com/encounter/objdiff.git
CI updates
This commit is contained in:
parent
134d2a0cb4
commit
6230f93108
|
@ -143,6 +143,11 @@ jobs:
|
|||
name: windows-x86_64
|
||||
build: build
|
||||
features: default
|
||||
- platform: windows-latest
|
||||
target: aarch64-pc-windows-msvc
|
||||
name: windows-arm64
|
||||
build: build
|
||||
features: default
|
||||
- platform: macos-latest
|
||||
target: x86_64-apple-darwin
|
||||
name: macos-x86_64
|
||||
|
@ -234,7 +239,6 @@ jobs:
|
|||
|
||||
release:
|
||||
name: Release
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
runs-on: ubuntu-latest
|
||||
needs: [ check, build-cli, build-gui ]
|
||||
permissions:
|
||||
|
@ -249,6 +253,8 @@ jobs:
|
|||
run: |
|
||||
set -euo pipefail
|
||||
mkdir ../out
|
||||
ls -R
|
||||
echo ----------------
|
||||
for dir in */; do
|
||||
for file in "$dir"*; do
|
||||
base=$(basename "$file")
|
||||
|
@ -265,6 +271,7 @@ jobs:
|
|||
done
|
||||
ls -R ../out
|
||||
- name: Release
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
files: out/*
|
||||
|
|
Loading…
Reference in New Issue