mirror of https://github.com/PCSX2/pcsx2.git
CI/Flatpak: Fix dubious ownership error
This commit is contained in:
parent
19c3dd8419
commit
4442ff7221
|
@ -60,6 +60,11 @@ jobs:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
set-safe-directory: ${{ env.GITHUB_WORKSPACE }}
|
set-safe-directory: ${{ env.GITHUB_WORKSPACE }}
|
||||||
|
|
||||||
|
# Work around container ownership issue
|
||||||
|
- name: Set Safe Directory
|
||||||
|
shell: bash
|
||||||
|
run: git config --global --add safe.directory "*"
|
||||||
|
|
||||||
# Hackity hack. When running the workflow on a schedule, we don't have the tag,
|
# Hackity hack. When running the workflow on a schedule, we don't have the tag,
|
||||||
# it doesn't fetch tags, therefore we don't get a version. So grab them manually.
|
# it doesn't fetch tags, therefore we don't get a version. So grab them manually.
|
||||||
# actions/checkout elides tags, fetch them primarily for releases
|
# actions/checkout elides tags, fetch them primarily for releases
|
||||||
|
@ -92,7 +97,6 @@ jobs:
|
||||||
|
|
||||||
- name: Generate AppStream XML
|
- name: Generate AppStream XML
|
||||||
run: |
|
run: |
|
||||||
git config --global --add safe.directory "*"
|
|
||||||
./.github/workflows/scripts/linux/generate-metainfo.sh .github/workflows/scripts/linux/flatpak/net.pcsx2.PCSX2.metainfo.xml
|
./.github/workflows/scripts/linux/generate-metainfo.sh .github/workflows/scripts/linux/flatpak/net.pcsx2.PCSX2.metainfo.xml
|
||||||
cat .github/workflows/scripts/linux/flatpak/net.pcsx2.PCSX2.metainfo.xml
|
cat .github/workflows/scripts/linux/flatpak/net.pcsx2.PCSX2.metainfo.xml
|
||||||
flatpak-builder-lint appstream .github/workflows/scripts/linux/flatpak/net.pcsx2.PCSX2.metainfo.xml
|
flatpak-builder-lint appstream .github/workflows/scripts/linux/flatpak/net.pcsx2.PCSX2.metainfo.xml
|
||||||
|
|
Loading…
Reference in New Issue