diff --git a/.gitea/workflows/build-appimage.yaml b/.gitea/workflows/build-appimage.yaml index 6709b06..f211fe7 100644 --- a/.gitea/workflows/build-appimage.yaml +++ b/.gitea/workflows/build-appimage.yaml @@ -6,13 +6,8 @@ jobs: Explore-Gitea-Actions: runs-on: bullseye steps: - - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" - - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." - name: Check out repository code uses: actions/checkout@v3 - - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - - run: echo "🖥️ The workflow is now ready to test your code on the runner." - run: | apt-get -y update apt-get -y install python3-yaml python3-requests bash @@ -20,7 +15,7 @@ jobs: shell: bash run: | echo "SHA_SHORT=$(git rev-parse --short HEAD)" >> $GITHUB_ENV - echo "YEAR=$(date +%Y)" >> GITHUB_ENV + echo "YEAR=$(date +%Y)" >> $GITHUB_ENV - name: Build AppImage run: | echo $GO_PIPELINE_LABEL @@ -38,4 +33,3 @@ jobs: GO_PIPELINE_LABEL: ${{ env.YEAR }}.${{ gitea.run_number }}_${{ env.SHA_SHORT }} UPLOAD_TOKEN: ${{ secrets.GITEA_TOKEN }} UPLOAD_USER: ${{ vars.GITEA_USER }} - - run: echo "🍏 This job's status is ${{ job.status }}."