Revert "REVERT ME: testing actions token"

This reverts commit d05bb8a37d.
This commit is contained in:
XargonWan 2024-08-03 10:09:06 +09:00
parent d251697b94
commit ad15a358cb

View file

@ -97,52 +97,49 @@ jobs:
- name: "[DEBUG] Outputting manifest" - name: "[DEBUG] Outputting manifest"
run: cat net.retrodeck.retrodeck.yml run: cat net.retrodeck.retrodeck.yml
- name: ¨DEBUG - Creating dummy file" - name: "Build flatpak: download only"
run: touch RetroDECK-cooker.flatpak id: "flatpak-download"
run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only.sh"
continue-on-error: true
# - name: "Build flatpak: download only" # Sometimes flatpak download fails, in this case it tries a second time
# id: "flatpak-download" - name: "Build flatpak: download only (retry)"
# run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_download_only.sh" if: steps.flatpak-download.outcome == 'failure'
# continue-on-error: true 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"
# # Sometimes flatpak download fails, in this case it tries a second time - name: Build flatpak
# - name: "Build flatpak: download only (retry)" run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_only.sh"
# 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: Build flatpak - name: Create Artifact for flathub
# run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_only.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: Create Artifact for flathub - name: Create Bundle
# run: | run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_bundle.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: Set environment variable with current branch name
# run: "/bin/bash ${GITHUB_WORKSPACE}/automation_tools/flatpak_build_bundle.sh" run: echo "GITHUB_REF_SLUG=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
# - name: Set environment variable with current branch name - name: Get commits since last release
# run: echo "GITHUB_REF_SLUG=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV run: |
# Get the latest release tag
# - name: Get commits since last release LATEST_TAG=$(git describe --tags --abbrev=0)
# run: | # Get all commits since the latest release tag
# # Get the latest release tag COMMITS=$(git log $LATEST_TAG..HEAD --pretty=format:"- %s")
# LATEST_TAG=$(git describe --tags --abbrev=0) # Set the output variable
# # Get all commits since the latest release tag echo "::set-output name=commits::$COMMITS"
# COMMITS=$(git log $LATEST_TAG..HEAD --pretty=format:"- %s") id: commits
# # Set the output variable continue-on-error: true
# 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
@ -179,13 +176,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: |