Skip to content

Commit

Permalink
change buildadpp to create release
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyLewen committed Oct 19, 2021
1 parent 9df789a commit 53c78e0
Showing 1 changed file with 16 additions and 11 deletions.
27 changes: 16 additions & 11 deletions .github/workflows/buildapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,22 @@ on:

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
-
name: Checkout
- name: Checkout code
uses: actions/checkout@v2
-
name: Set Up flutter
uses: subosito/flutter-action@v1
-
name: Get dependencies
run: flutter pub get
-
name: Build app
run: flutter build apk --release
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Changes in this Release
- First Change
- Second Change
draft: false
prerelease: false

0 comments on commit 53c78e0

Please sign in to comment.