mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-10-31 13:03:20 -07:00
fix: missing OSX app permissions
This commit is contained in:
parent
55d2657799
commit
8dafe176df
2 changed files with 7 additions and 4 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -61,7 +61,7 @@ jobs:
|
||||||
if: ${{ startsWith(matrix.runtime, 'linux-') }}
|
if: ${{ startsWith(matrix.runtime, 'linux-') }}
|
||||||
run: mv publish/SourceGit publish/sourcegit
|
run: mv publish/SourceGit publish/sourcegit
|
||||||
- name: Tar artifact
|
- name: Tar artifact
|
||||||
if: ${{ startsWith(matrix.runtime, 'linux-') }}
|
if: ${{ startsWith(matrix.runtime, 'linux-') || startsWith(matrix.runtime, 'osx-') }}
|
||||||
run: |
|
run: |
|
||||||
tar -cvf "sourcegit.${{ matrix.runtime }}.tar" -C publish .
|
tar -cvf "sourcegit.${{ matrix.runtime }}.tar" -C publish .
|
||||||
rm -r publish/*
|
rm -r publish/*
|
||||||
|
@ -70,4 +70,4 @@ jobs:
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: sourcegit.${{ matrix.runtime }}
|
name: sourcegit.${{ matrix.runtime }}
|
||||||
path: publish
|
path: publish/*
|
||||||
|
|
7
.github/workflows/package.yml
vendored
7
.github/workflows/package.yml
vendored
|
@ -49,12 +49,15 @@ jobs:
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: sourcegit.${{ matrix.runtime }}
|
name: sourcegit.${{ matrix.runtime }}
|
||||||
path: build/SourceGit
|
path: build
|
||||||
- name: Package
|
- name: Package
|
||||||
env:
|
env:
|
||||||
VERSION: ${{ inputs.version }}
|
VERSION: ${{ inputs.version }}
|
||||||
RUNTIME: ${{ matrix.runtime }}
|
RUNTIME: ${{ matrix.runtime }}
|
||||||
run: ./build/scripts/package.osx-app.sh
|
run: |
|
||||||
|
mkdir build/SourceGit
|
||||||
|
tar -xf "build/sourcegit.${{ matrix.runtime }}.tar" -C build/SourceGit
|
||||||
|
./build/scripts/package.osx-app.sh
|
||||||
- name: Upload package artifact
|
- name: Upload package artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in a new issue