-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (25 loc) · 914 Bytes
/
release.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Release
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v4
id: release
- run: echo "Release created ${{ steps.release.outputs.release_created }}"
if: ${{ steps.release.outputs.release_created }}
- name: Release server
uses: brayn003/stonk.ninja/.github/workflows/release-server.yaml
if: ${{ steps.release.outputs.server--release_created }}
- name: Release client
uses: brayn003/stonk.ninja/.github/workflows/release-client.yaml
if: ${{ steps.release.outputs.client--release_created }}
- name: Release tick-workers
uses: brayn003/stonk.ninja/.github/workflows/release-tick-workers.yaml
if: ${{ steps.release.outputs.tick-workers--release_created }}