mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-22 20:37:19 -08:00
Merge pull request #111 from dangreene0/develop
Fixed Linux and macOS not being executable
This commit is contained in:
commit
478d52bae4
1 changed files with 9 additions and 9 deletions
18
.github/workflows/ci.yml
vendored
18
.github/workflows/ci.yml
vendored
|
@ -44,13 +44,13 @@ jobs:
|
|||
run: dotnet build -c Release
|
||||
- name: Publish
|
||||
run: dotnet publish src/SourceGit.csproj -c Release -o publish -r osx-x64 -p:PublishAot=true -p:PublishTrimmed=true -p:TrimMode=link --self-contained
|
||||
- name: Allow Executing File as Program
|
||||
run: chmod +x publish/Sourcegit
|
||||
- name: Packing Program
|
||||
run: tar -cvf sourcegit.osx-x64.tar publish/
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: sourcegit.osx-x64
|
||||
path: publish
|
||||
path: sourcegit.osx-x64.tar
|
||||
build-macos-arm64:
|
||||
name: Build macOS (Apple Silicon)
|
||||
runs-on: macos-latest
|
||||
|
@ -67,13 +67,13 @@ jobs:
|
|||
run: dotnet build -c Release
|
||||
- name: Publish
|
||||
run: dotnet publish src/SourceGit.csproj -c Release -o publish -r osx-arm64 -p:PublishAot=true -p:PublishTrimmed=true -p:TrimMode=link --self-contained
|
||||
- name: Allow Executing File as Program
|
||||
run: chmod +x publish/Sourcegit
|
||||
- name: Packing Program
|
||||
run: tar -cvf sourcegit.osx-arm64.tar publish/
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: sourcegit.osx-arm64
|
||||
path: publish
|
||||
path: sourcegit.osx-arm64.tar
|
||||
build-linux:
|
||||
name: Build Linux
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -92,10 +92,10 @@ jobs:
|
|||
run: dotnet publish src/SourceGit.csproj -c Release -o publish -r linux-x64 -p:PublishAot=true -p:PublishTrimmed=true -p:TrimMode=link --self-contained
|
||||
- name: Rename Executable File
|
||||
run: mv publish/SourceGit publish/sourcegit
|
||||
- name: Allow Executing File as Program
|
||||
run: chmod +x publish/sourcegit
|
||||
- name: Packing Program
|
||||
run: tar -cvf sourcegit.linux-x64.tar publish/
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: sourcegit.linux-x64
|
||||
path: publish
|
||||
path: sourcegit.linux-x64.tar
|
||||
|
|
Loading…
Reference in a new issue