mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-05-04 23:30:41 +00:00
removed changelog input
This commit is contained in:
parent
8193c056d5
commit
b79f1bd509
1 changed files with 4 additions and 5 deletions
9
.github/workflows/cd_prod.yml
vendored
9
.github/workflows/cd_prod.yml
vendored
|
@ -12,10 +12,6 @@ on:
|
||||||
description: "Version"
|
description: "Version"
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
changelog:
|
|
||||||
description: "Changelog"
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
BUILD_ARGS: --release --flavor prod --dart-define cameraPreviewAspectRatio=2/3 -t lib/main_prod.dart
|
BUILD_ARGS: --release --flavor prod --dart-define cameraPreviewAspectRatio=2/3 -t lib/main_prod.dart
|
||||||
|
@ -123,11 +119,14 @@ jobs:
|
||||||
create-release:
|
create-release:
|
||||||
name: Create Github release
|
name: Create Github release
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
- uses: ncipollo/release-action@v1
|
- uses: ncipollo/release-action@v1
|
||||||
with:
|
with:
|
||||||
artifacts: "m3_lightmeter_apk.apk, m3_lightmeter_bundle.aab"
|
artifacts: "m3_lightmeter_apk.apk, m3_lightmeter_bundle.aab"
|
||||||
body: "${{ github.event.inputs.changelog }}"
|
|
||||||
skipIfReleaseExists: true
|
skipIfReleaseExists: true
|
||||||
tag: "v${{ github.event.inputs.version }}"
|
tag: "v${{ github.event.inputs.version }}"
|
||||||
|
|
Loading…
Reference in a new issue