Skip to content

添加更新检测

添加更新检测 #6

Workflow file for this run

name: Create Release
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Get build file name
id: get_filename
run: echo "::set-output name=filename::$(ls update/*.apk | head -n 1)"
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.MOD_TEST }}
with:
tag_name: ${{ github.ref.replace('refs/tags/', '') }}

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

View workflow run for this annotation

GitHub Actions / Create Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 26, Col: 21): Unexpected symbol: '('. Located at position 19 within expression: github.ref.replace('refs/tags/', '')
release_name: Release ${{ steps.get_filename.outputs.filename }}
draft: false
prerelease: false
- name: Upload Release Asset
id: upload_release_asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.MOD_TEST }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./update/${{ steps.get_filename.outputs.filename }}
asset_name: ${{ steps.get_filename.outputs.filename }}
asset_content_type: application/octet-stream