mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 22:15:39 +00:00
Moving artifacts in the repo
This commit is contained in:
parent
3782969400
commit
af50137481
9
.github/workflows/cooker-selfhosted.yml
vendored
9
.github/workflows/cooker-selfhosted.yml
vendored
|
@ -32,7 +32,6 @@ jobs:
|
||||||
|
|
||||||
- name: Generate build ID
|
- name: Generate build ID
|
||||||
id: generating_buildid
|
id: generating_buildid
|
||||||
#run: echo "##[set-output name=build-id;]$(echo "${{ steps.extract_branch.outputs.branch }}-${{ steps.date.outputs.date }}")"
|
|
||||||
run: echo "##[set-output name=build-id;]$(echo "$( git rev-parse --short HEAD )")"
|
run: echo "##[set-output name=build-id;]$(echo "$( git rev-parse --short HEAD )")"
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
@ -61,6 +60,7 @@ jobs:
|
||||||
tar -czf ${GITHUB_WORKSPACE}/RetroDECK-Artifact.tar.gz -C ${GITHUB_WORKSPACE}/retrodeck-flatpak-cooker .
|
tar -czf ${GITHUB_WORKSPACE}/RetroDECK-Artifact.tar.gz -C ${GITHUB_WORKSPACE}/retrodeck-flatpak-cooker .
|
||||||
hash=($(sha256sum ${GITHUB_WORKSPACE}/RetroDECK-Artifact.tar.gz))
|
hash=($(sha256sum ${GITHUB_WORKSPACE}/RetroDECK-Artifact.tar.gz))
|
||||||
echo $hash > ${GITHUB_WORKSPACE}/RetroDECK-Artifact.sha
|
echo $hash > ${GITHUB_WORKSPACE}/RetroDECK-Artifact.sha
|
||||||
|
mv -f RetroDECK-Artifact.* ${{ secrets.ARTIFACT_REPO }}
|
||||||
|
|
||||||
- name: Create Bundle
|
- name: Create Bundle
|
||||||
run: |
|
run: |
|
||||||
|
@ -92,10 +92,3 @@ jobs:
|
||||||
name: retrodeck-flatpak
|
name: retrodeck-flatpak
|
||||||
path: RetroDECK.flatpak
|
path: RetroDECK.flatpak
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
- name: Upload RetroDECK-Artifact
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: retrodeck-artifact
|
|
||||||
path: RetroDECK-Artifact.tar.gz
|
|
||||||
continue-on-error: true
|
|
99
.github/workflows/temp-upload-on-server.yml
vendored
99
.github/workflows/temp-upload-on-server.yml
vendored
|
@ -1,99 +0,0 @@
|
||||||
name: server-upload
|
|
||||||
|
|
||||||
on:
|
|
||||||
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
|
|
||||||
Building_RetroDECK:
|
|
||||||
runs-on: self-hosted
|
|
||||||
steps:
|
|
||||||
|
|
||||||
- name: Home Test
|
|
||||||
run: touch $HOME/retrodeck-test
|
|
||||||
|
|
||||||
- name: Remove stuck mounts
|
|
||||||
run: sudo umount -f /home/administrator/actions-runner/_work/RetroDECK/RetroDECK/.flatpak-builder/rofiles/*
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
- name: Get date for artifacts
|
|
||||||
id: date
|
|
||||||
run: echo "::set-output name=date::$(date +'%Y%m%d_%H%M%S')"
|
|
||||||
|
|
||||||
- name: Extract branch name
|
|
||||||
shell: bash
|
|
||||||
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
|
|
||||||
id: extract_branch
|
|
||||||
|
|
||||||
- name: Generate build ID
|
|
||||||
id: generating_buildid
|
|
||||||
#run: echo "##[set-output name=build-id;]$(echo "${{ steps.extract_branch.outputs.branch }}-${{ steps.date.outputs.date }}")"
|
|
||||||
run: echo "##[set-output name=build-id;]$(echo "$( git rev-parse --short HEAD )")"
|
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Initialize enviornment
|
|
||||||
run: |
|
|
||||||
git pull
|
|
||||||
git submodule init
|
|
||||||
git submodule update
|
|
||||||
sudo apt install -y flatpak flatpak-builder p7zip-full
|
|
||||||
flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
|
||||||
flatpak install --user -y --noninteractive \
|
|
||||||
org.kde.Sdk//6.3 \
|
|
||||||
org.kde.Platform//6.3 \
|
|
||||||
org.freedesktop.Platform.ffmpeg-full/x86_64/21.08 \
|
|
||||||
io.qt.qtwebengine.BaseApp/x86_64/6.3 \
|
|
||||||
org.freedesktop.Sdk.Extension.llvm13 \
|
|
||||||
org.freedesktop.Sdk.Extension.dotnet6/x86_64/21.08
|
|
||||||
|
|
||||||
- name: Build flatpak
|
|
||||||
run: |
|
|
||||||
flatpak-builder --user --force-clean --install-deps-from=flathub --install-deps-from=flathub-beta --repo=${GITHUB_WORKSPACE}/local ${GITHUB_WORKSPACE}/retrodeck-flatpak-cooker net.retrodeck.retrodeck.yml
|
|
||||||
|
|
||||||
- name: Create Artifact for flathub
|
|
||||||
run: |
|
|
||||||
tar -czf ${GITHUB_WORKSPACE}/RetroDECK-Artifact.tar.gz -C ${GITHUB_WORKSPACE}/retrodeck-flatpak-cooker .
|
|
||||||
hash=($(sha256sum ${GITHUB_WORKSPACE}/RetroDECK-Artifact.tar.gz))
|
|
||||||
echo $hash > ${GITHUB_WORKSPACE}/RetroDECK-Artifact.sha
|
|
||||||
cp RetroDECK-Artifact.* $HOME
|
|
||||||
|
|
||||||
- name: Create Bundle
|
|
||||||
run: |
|
|
||||||
flatpak build-bundle ${GITHUB_WORKSPACE}/local RetroDECK.flatpak net.retrodeck.retrodeck
|
|
||||||
|
|
||||||
- name: Publish the flatpak in a new cooker release
|
|
||||||
uses: ncipollo/release-action@v1
|
|
||||||
with:
|
|
||||||
tag: "${{ steps.generating_buildid.outputs.build-id }}"
|
|
||||||
body: |
|
|
||||||
# Release Notes (Cooker)
|
|
||||||
This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}.
|
|
||||||
|
|
||||||
Cooker channel is provided for the community to test fixes and explore new functionality.
|
|
||||||
Please DO NOT open issues or ask support on this build.
|
|
||||||
|
|
||||||
artifacts: "RetroDECK.flatpak,RetroDECK-Artifact.tar.gz"
|
|
||||||
allowUpdates: true
|
|
||||||
prerelease: true
|
|
||||||
draft: false
|
|
||||||
token: ${{ secrets.TRIGGER_BUILD_TOKEN }}
|
|
||||||
repo: RetroDECK-cooker
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
# In case it cannot publish the release at least it's providing the flatpak file for creating a manual release
|
|
||||||
- name: Upload RetroDECK.flatpak
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: retrodeck-flatpak
|
|
||||||
path: RetroDECK.flatpak
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
- name: Upload RetroDECK-Artifact
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: retrodeck-artifact
|
|
||||||
path: RetroDECK-Artifact.tar.gz
|
|
||||||
continue-on-error: true
|
|
Loading…
Reference in a new issue