Merge pull request #107 from dangreene0/develop

Added ability to run program by default for macOS and Linux
This commit is contained in:
leo 2024-05-06 07:23:03 +08:00 committed by GitHub
commit 16741c21e6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -44,6 +44,8 @@ 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: Upload Artifact
uses: actions/upload-artifact@v4
with:
@ -65,6 +67,8 @@ 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: Upload Artifact
uses: actions/upload-artifact@v4
with:
@ -88,6 +92,8 @@ 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: Upload Artifact
uses: actions/upload-artifact@v4
with: