diff --git a/.github/workflows/autobuild-main.yml b/.github/workflows/autobuild-main.yml index 6a23d5a..f082198 100644 --- a/.github/workflows/autobuild-main.yml +++ b/.github/workflows/autobuild-main.yml @@ -20,14 +20,14 @@ jobs: uses: actions/download-artifact@v4 with: name: ${{ needs.build.outputs.bin_name }} - - name: Fix file permissions + - name: Run shell tasks run: | - find -name LogosLinuxInstaller -type f + echo "DATE=$(date +%Y%m%d)" >> $GITHUB_ENV find -name LogosLinuxInstaller -type f -exec chmod +x {} \; - name: Upload release to test repo uses: softprops/action-gh-release@v1 with: - tag_name: main-${{ needs.build.outputs.sha_short }} + tag_name: main-${{ env.DATE }}-${{ needs.build.outputs.sha_short }} prerelease: true files: ${{ needs.build.outputs.bin_name }} repository: FaithLife-Community/test-builds