mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
24 lines
390 B
YAML
24 lines
390 B
YAML
---
|
|
name: 'tagged-release'
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
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
|