Skip to content

Commit

Permalink
Update GitHub Actions workflow to run tests instead of building the app
Browse files Browse the repository at this point in the history
  • Loading branch information
Thavarshan committed Aug 17, 2024
1 parent 40caa47 commit a9c4820
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 }}
Expand Down

0 comments on commit a9c4820

Please sign in to comment.