From a9c4820f95ca972a91f080a0d9a4986b33db12ca Mon Sep 17 00:00:00 2001 From: Jerome Thayananthajothy Date: Sat, 17 Aug 2024 20:01:23 +0100 Subject: [PATCH] Update GitHub Actions workflow to run tests instead of building the app --- .github/workflows/release.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6c5902b..58d9cd2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,16 +30,20 @@ jobs: - name: List output directory contents run: ls -R out/make - - name: Upload Release Asset + - name: Upload Build Artifacts uses: actions/upload-artifact@v2 with: name: comet-${{ matrix.os }} path: out/make/**/*.* + release: needs: build runs-on: ubuntu-latest steps: - - name: Create GitHub Release + - name: Checkout code + uses: actions/checkout@v2 + + - name: Create Release id: create_release uses: actions/create-release@v1 env: @@ -50,7 +54,8 @@ jobs: draft: false prerelease: false - - name: Upload Release Assets + - name: Upload Release Asset + id: upload-release-asset uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}