From c212c0a6b28c15283077ac1590653f03ed82f7ae Mon Sep 17 00:00:00 2001 From: naturecodevoid <44983869+naturecodevoid@users.noreply.github.com> Date: Sun, 1 Jan 2023 20:56:44 -0800 Subject: [PATCH] Update build.yml Signed-off-by: naturecodevoid <44983869+naturecodevoid@users.noreply.github.com> --- .github/workflows/build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9fdd77c6..e60aab94 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,6 +21,10 @@ jobs: - name: Test nightly run: echo "test" > test.ipa + - name: Get current date + id: date + run: echo "date=$(date -u +'%c')" >> $GITHUB_OUTPUT + - name: Upload to nightly release uses: IsaacShelton/update-existing-release@v1.3.1 with: @@ -34,9 +38,9 @@ jobs: Nightly builds are built from the most recent commit. However, since they are much newer and less tested, they have a much higher chance of bugs, so **use at your own risk**. - If you use the SideStore (Nightly) app, it will use the latest nightly build. + If you use the SideStore (Nightly) app, it will use the latest nightly build (make sure to update it in "My Apps"). - Built at: $(date -u +'%c') (UTC) + Built at: ${{ steps.date.outputs.date }} (UTC) - name: Trigger error run: exit 1