From bd999a61876e04924cea1f04c7a2cb0c1f9bcb0f Mon Sep 17 00:00:00 2001 From: natalie Date: Mon, 28 Oct 2024 22:36:51 +0100 Subject: [PATCH] build: fix build again (#509) --- .github/workflows/dev.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 406dec41..bf17fa98 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -24,8 +24,6 @@ jobs: uses: actions/checkout@v2 - name: Set BUILT_DATE_TIME run: echo "BUILT_DATE_TIME=$(date -u -Iseconds)" >> $GITHUB_ENV - - name: Set up hub - uses: Geertvdc/setup-hub@v1.0.0 - name: Build Salty-747 uses: actions/setup-node@v1 with: @@ -94,6 +92,6 @@ jobs: fi - name: Upload installer zip assets env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - hub release edit $(find build-modules -type f -printf "-a %p ") -m "" "${{ env.INSTALLER_PRE_RELEASE_TAG }}" + gh release upload "${{ env.INSTALLER_PRE_RELEASE_TAG }}" $(find build-modules -type f -printf "%p ")