mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-09 12:39:29 +00:00
fix not able to make release
This commit is contained in:
parent
7fce291c66
commit
b6164c38bc
2 changed files with 6 additions and 4 deletions
10
.github/workflows/flutter_release.yaml
vendored
10
.github/workflows/flutter_release.yaml
vendored
|
|
@ -3,10 +3,13 @@ name: Flutter Release Workflow
|
|||
on:
|
||||
push:
|
||||
tags:
|
||||
- "v*.*.*"
|
||||
- "v**"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
permissions:
|
||||
# write permission is required to create a github release
|
||||
contents: write
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
|
@ -43,14 +46,13 @@ jobs:
|
|||
- name: Generate Release Notes
|
||||
id: generate_release_notes
|
||||
uses: release-drafter/release-drafter@v5
|
||||
with:
|
||||
config-name: release-drafter.yml
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ github.token }}
|
||||
|
||||
- name: Create GitHub Release
|
||||
uses: ncipollo/release-action@v1
|
||||
with:
|
||||
artifacts: build/app/outputs/flutter-apk/app-release.apk
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
name: Release ${{ github.ref }}
|
||||
tag: ${{ github.ref }}
|
||||
# body: ${{ steps.generate_release_notes.outputs.notes }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue