Skip to content

Instantly share code, notes, and snippets.

@wenqiglantz
Created January 24, 2022 01:13
Show Gist options
  • Save wenqiglantz/0908d5d69976c317a415b602b095fc59 to your computer and use it in GitHub Desktop.
Save wenqiglantz/0908d5d69976c317a415b602b095fc59 to your computer and use it in GitHub Desktop.
name: "tagged-release"
on:
push:
tags:
- "v*"
jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"
steps:
# ...
- name: "Build & test"
run: |
echo "done!"
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
LICENSE.txt
*.jar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment