Skip to content

Release

Release #1

Workflow file for this run

name: Release
on:
push:
tags: ['*']
env:
GITHUB_TAG: ${{ github.ref }}
jobs:
tests:
name: Test
uses: inkapplications/.github/.github/workflows/[email protected]
publish:
name: Publish to Maven Central
nees: tests

Check failure on line 13 in .github/workflows/tags.yml

View workflow run for this annotation

GitHub Actions / Release

Invalid workflow file

The workflow is not valid. .github/workflows/tags.yml (Line: 13, Col: 5): Unexpected value 'nees'
secrets: inherit
uses: inkapplications/.github/.github/workflows/[email protected]
with:
version: ${{ github.ref_name }}
publish-android: true
draft-release:
name: Draft Github Release
needs: [publish]
runs-on: ubuntu-latest
steps:
- name: Create Release
id: create_release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref_name }}
draft: true
prerelease: false
body: "See CHANGELOG.md for details"