Skip to content

docs: update readme.md #1

docs: update readme.md

docs: update readme.md #1

Workflow file for this run

name: Github Publish
on:

Check failure on line 2 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

You have an error in your yaml syntax on line 2
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
# 1
- uses: dawidd6/action-download-artifact@v2
with:
github_token: ${{secrets.GITHUB_TOKEN}}
workflow: flutter-ci.yml
workflow_conclusion: success
branch: master
name: release.apk
path: downloads
if_no_artifact_found: fail
# 2
- name: Generate release tag
id: tag
run: |
echo "::set-output name=release_tag::APP_$(date +"%Y.%m.%d_%H-%M")"
# 3
- name: Release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.tag.outputs.release_tag }}
files: downloads/release-signed.apk