mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-25 07:25:38 +00:00
REVERT ME: testing actions token
This commit is contained in:
parent
9d9b3eeffe
commit
d05bb8a37d
91
.github/workflows/cooker-selfhosted.yml
vendored
91
.github/workflows/cooker-selfhosted.yml
vendored
|
@ -97,49 +97,52 @@ jobs:
|
||||||
- name: "[DEBUG] Outputting manifest"
|
- name: "[DEBUG] Outputting manifest"
|
||||||
run: cat net.retrodeck.retrodeck.yml
|
run: cat net.retrodeck.retrodeck.yml
|
||||||
|
|
||||||
- name: "Build flatpak: download only"
|
- name: ¨DEBUG - Creating dummy file"
|
||||||
id: "flatpak-download"
|
run: touch RetroDECK-cooker.flatpak
|
||||||
run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only.sh"
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
# Sometimes flatpak download fails, in this case it tries a second time
|
# - name: "Build flatpak: download only"
|
||||||
- name: "Build flatpak: download only (retry)"
|
# id: "flatpak-download"
|
||||||
if: steps.flatpak-download.outcome == 'failure'
|
# run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only.sh"
|
||||||
run: |
|
# continue-on-error: true
|
||||||
echo "Download failed, maybe some hash changed since the build start."
|
|
||||||
echo "Recalculating hashes and retrying download..."
|
|
||||||
rm -f "{GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml"
|
|
||||||
cp "${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak" "${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml"
|
|
||||||
"${GITHUB_WORKSPACE}/automation_tools/pre_build_automation.sh"
|
|
||||||
"${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only.sh"
|
|
||||||
|
|
||||||
- name: Build flatpak
|
# # Sometimes flatpak download fails, in this case it tries a second time
|
||||||
run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_only.sh"
|
# - name: "Build flatpak: download only (retry)"
|
||||||
|
# if: steps.flatpak-download.outcome == 'failure'
|
||||||
|
# run: |
|
||||||
|
# echo "Download failed, maybe some hash changed since the build start."
|
||||||
|
# echo "Recalculating hashes and retrying download..."
|
||||||
|
# rm -f "{GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml"
|
||||||
|
# cp "${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak" "${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml"
|
||||||
|
# "${GITHUB_WORKSPACE}/automation_tools/pre_build_automation.sh"
|
||||||
|
# "${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only.sh"
|
||||||
|
|
||||||
- name: Create Artifact for flathub
|
# - name: Build flatpak
|
||||||
run: |
|
# run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_only.sh"
|
||||||
tar -czf ${GITHUB_WORKSPACE}/RetroDECK-Artifact-cooker.tar.gz -C ${GITHUB_WORKSPACE}/retrodeck-flatpak-cooker .
|
|
||||||
hash=($(sha256sum ${GITHUB_WORKSPACE}/RetroDECK-Artifact-cooker.tar.gz))
|
|
||||||
echo $hash > ${GITHUB_WORKSPACE}/RetroDECK-Artifact-cooker.sha
|
|
||||||
mv -f RetroDECK-Artifact-cooker.* ${{ secrets.ARTIFACT_REPO }}
|
|
||||||
continue-on-error: true
|
|
||||||
|
|
||||||
- name: Create Bundle
|
# - name: Create Artifact for flathub
|
||||||
run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_bundle.sh"
|
# run: |
|
||||||
|
# tar -czf ${GITHUB_WORKSPACE}/RetroDECK-Artifact-cooker.tar.gz -C ${GITHUB_WORKSPACE}/retrodeck-flatpak-cooker .
|
||||||
|
# hash=($(sha256sum ${GITHUB_WORKSPACE}/RetroDECK-Artifact-cooker.tar.gz))
|
||||||
|
# echo $hash > ${GITHUB_WORKSPACE}/RetroDECK-Artifact-cooker.sha
|
||||||
|
# mv -f RetroDECK-Artifact-cooker.* ${{ secrets.ARTIFACT_REPO }}
|
||||||
|
# continue-on-error: true
|
||||||
|
|
||||||
- name: Set environment variable with current branch name
|
# - name: Create Bundle
|
||||||
run: echo "GITHUB_REF_SLUG=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
|
# run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_bundle.sh"
|
||||||
|
|
||||||
- name: Get commits since last release
|
# - name: Set environment variable with current branch name
|
||||||
run: |
|
# run: echo "GITHUB_REF_SLUG=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
|
||||||
# Get the latest release tag
|
|
||||||
LATEST_TAG=$(git describe --tags --abbrev=0)
|
# - name: Get commits since last release
|
||||||
# Get all commits since the latest release tag
|
# run: |
|
||||||
COMMITS=$(git log $LATEST_TAG..HEAD --pretty=format:"- %s")
|
# # Get the latest release tag
|
||||||
# Set the output variable
|
# LATEST_TAG=$(git describe --tags --abbrev=0)
|
||||||
echo "::set-output name=commits::$COMMITS"
|
# # Get all commits since the latest release tag
|
||||||
id: commits
|
# COMMITS=$(git log $LATEST_TAG..HEAD --pretty=format:"- %s")
|
||||||
continue-on-error: true
|
# # Set the output variable
|
||||||
|
# echo "::set-output name=commits::$COMMITS"
|
||||||
|
# id: commits
|
||||||
|
# continue-on-error: true
|
||||||
|
|
||||||
- name: Publish the flatpak in a new cooker release
|
- name: Publish the flatpak in a new cooker release
|
||||||
uses: ncipollo/release-action@v1
|
uses: ncipollo/release-action@v1
|
||||||
|
@ -176,13 +179,13 @@ jobs:
|
||||||
git tag "${{ env.TAG }}" # Create the tag locally
|
git tag "${{ env.TAG }}" # Create the tag locally
|
||||||
git push origin "${{ env.TAG }}" # Push the new tag in the remote repo
|
git push origin "${{ env.TAG }}" # Push the new tag in the remote repo
|
||||||
|
|
||||||
# In case it cannot publish the release at least it's providing the flatpak file for creating a manual release
|
# # In case it cannot publish the release at least it's providing the flatpak file for creating a manual release
|
||||||
- name: Upload RetroDECK-cooker.flatpak
|
# - name: Upload RetroDECK-cooker.flatpak
|
||||||
uses: actions/upload-artifact@v3
|
# uses: actions/upload-artifact@v3
|
||||||
with:
|
# with:
|
||||||
name: retrodeck-flatpak
|
# name: retrodeck-flatpak
|
||||||
path: RetroDECK-cooker.flatpak
|
# path: RetroDECK-cooker.flatpak
|
||||||
continue-on-error: true
|
# continue-on-error: true
|
||||||
|
|
||||||
# - name: Upload RetroDECK-cooker.flatpak to Gitea Release
|
# - name: Upload RetroDECK-cooker.flatpak to Gitea Release
|
||||||
# run: |
|
# run: |
|
||||||
|
|
Loading…
Reference in a new issue