Skip to content

should work now please #1

should work now please

should work now please #1

Workflow file for this run

name: Release
on:
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Download apk
uses: suisei-cn/[email protected]
name: Download the file

Check failure on line 15 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 15, Col: 9): 'name' is already defined
with:
url: https://nightly.link/fifomori/android/workflows/build/main/app-debug.apk.zip
target: download/
retry-times: 3
- name: Create release
uses: ncipollo/release-action@v1
with:
artifacts: download/app-debug.apk.zip
makeLatest: true
prerelease: ${{ endsWith(github.event.ref, '-beta') }}