Skip to content

update release

update release #4

name: Create Sample Release
on:
push:
tags:
- v*
permissions:
contents: write
jobs:
release:
name: Release pushed tag
runs-on: ubuntu-latest
steps:
- name: Generate changelog

Check failure on line 16 in .github/workflows/create-release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/create-release.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
id: changelog
uses: metcalfc/changelog-generator@v4.3.1
with:
myToken: ${{ secrets.ACCESS_TOKEN }}
- name: Upload sample
uses: ncipollo/release-action@v1
with:
name: Sample/Resource packs ${{ github.ref }}
repo_token: ${{ secrets.ACCESS_TOKEN }}
overwrite: true
allowUpdates: true
body: ${{ steps.changelog.outputs.changelog }}