mirror of https://github.com/ojizero/gofindup
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
439 B
20 lines
439 B
name: Create new Github release |
|
on: |
|
push: |
|
tags: |
|
- v* |
|
jobs: |
|
build: |
|
name: Build |
|
runs-on: ubuntu-latest |
|
steps: |
|
- name: Check out code |
|
uses: actions/checkout@v1 |
|
|
|
- name: Release new version |
|
uses: actions/create-release@v1 |
|
env: |
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
|
with: |
|
tag_name: ${{ github.ref }} |
|
release_name: Release ${{ github.ref }}
|
|
|