diff --git a/.github/workflows/github_actions.yml b/.github/workflows/github_actions.yml index 5f25b363..aa64b776 100644 --- a/.github/workflows/github_actions.yml +++ b/.github/workflows/github_actions.yml @@ -54,7 +54,7 @@ jobs: - name: Check if we want to sign id: check_sign run: | - echo "sign=${{ secrets.AZURE_CLIENT_ID != '' }}" >> $GITHUB_OUTPUT + echo "sign=${{ secrets.AZURE_CLIENT_ID != '' }}" >> $GITHUB_OUTPUT - name: Azure login if: steps.check_sign.outputs.sign == 'true' uses: azure/login@v2 @@ -379,39 +379,3 @@ jobs: with: name: VRCX-Zip path: 'VRCX_${{ needs.set_version.outputs.version }}.zip' - - - name: Download x64 Electron macOS artifacts - uses: actions/download-artifact@v6 - with: - name: Electron-MacDmg-x64 - - name: Download arm64 Electron macOS artifacts - uses: actions/download-artifact@v6 - with: - name: Electron-MacDmg-arm64 - - - name: Generate hashes - run: | - sha256sum "VRCX_${{ needs.set_version.outputs.version }}_Setup.exe" "VRCX_${{ needs.set_version.outputs.version }}_x64.AppImage" > "SHA256SUMS.txt" - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: '${{ needs.set_version.outputs.version }}' - release_name: 'VRCX Nightly ${{ needs.set_version.outputs.version }}' - draft: false - prerelease: false - - name: Upload multiple assets to release - uses: csexton/release-asset-action@v3 - with: - files: | - VRCX_${{ needs.set_version.outputs.version }}_Setup.exe - VRCX_${{ needs.set_version.outputs.version }}.zip - VRCX_${{ needs.set_version.outputs.version }}_x64.AppImage - VRCX_${{ needs.set_version.outputs.version }}_arm64.AppImage - VRCX_${{ needs.set_version.outputs.version }}_x64.dmg - VRCX_${{ needs.set_version.outputs.version }}_arm64.dmg - SHA256SUMS.txt - github-token: ${{ secrets.GITHUB_TOKEN }} - release-url: ${{ steps.create_release.outputs.upload_url }}