Skip to content

updated english files #13

updated english files

updated english files #13

Workflow file for this run

on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
name: Create Release
jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- run: |
git fetch --prune --unshallow --tags

Check failure on line 18 in .github/workflows/changelog.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/changelog.yml

Invalid workflow file

You have an error in your yaml syntax on line 18
- name: Create changelogs
id: changelogs
uses: heineiuo/create-changelogs@master
- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: ${{ steps.changelogs.outputs.changelogs }}
draft: false
prerelease: ${{ steps.changelogs.outputs.release_type == 'prerelease' }}