mirror of
https://github.com/araxiaonline/mod-eluna.git
synced 2026-06-13 03:02:27 -04:00
18 lines
450 B
YAML
18 lines
450 B
YAML
name: tag-release
|
|
on:
|
|
workflow_run:
|
|
workflows: ["core-build"]
|
|
types:
|
|
- completed
|
|
jobs:
|
|
release-on-push:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- name: Release on Push
|
|
uses: rymndhng/release-on-push-action@master
|
|
with:
|
|
bump_version_scheme: minor
|