Skip to content

Commit

Permalink
fix create gh release step
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Knee committed Nov 28, 2023
1 parent 5213c29 commit 8196fdd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ on:
push:
branches:
- main
pull_request:
tags:
- '*'
pull_request:

jobs:
build:
Expand All @@ -27,13 +29,14 @@ jobs:
run: ./gradlew :maestro-cli:installDist -q

- name: Create GitHub Release
if: startsWith(github.ref, 'refs/tags/')
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
tag_name: ${{ github.ref_name }}
release_name: Release ${{ github.ref_name }}
draft: false
prerelease: false

Expand Down
Binary file modified maestro-client/src/main/resources/maestro-app.apk
Binary file not shown.
Binary file modified maestro-client/src/main/resources/maestro-server.apk
Binary file not shown.

0 comments on commit 8196fdd

Please sign in to comment.