Skip to content

Publish to GitHub Releases #1

Publish to GitHub Releases

Publish to GitHub Releases #1

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a package using Gradle and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#Publishing-using-gradle
name: Publish to GitHub Releases
on:
workflow_dispatch:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read|write

Check failure on line 20 in .github/workflows/github-releases.yml

View workflow run for this annotation

GitHub Actions / Publish to GitHub Releases

Invalid workflow file

The workflow is not valid. .github/workflows/github-releases.yml (Line: 20, Col: 17): Unexpected value 'read|write' .github/workflows/github-releases.yml (Line: 29, Col: 7): Unexpected value 'update_latest_release'
steps:
- name: Upload To Github Release
uses: xresloader/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: "build/libs/*.jar"
update_latest_release: true
overwrite: true