-
Notifications
You must be signed in to change notification settings - Fork 2
38 lines (31 loc) · 1.06 KB
/
autorelease.yml
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
33
34
35
36
37
38
name: AutoRelease
on:
push:
tags:
- "*"
workflow_dispatch:
jobs:
tagged-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Wait for build to succeed
uses: fountainhead/[email protected]
id: wait-for-build
with:
token: ${{ secrets.GITHUB_TOKEN }}
checkName: Build iOS
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- name: Wait for test to succeed
if: steps.wait-for-build.outputs.conclusion == 'success'
uses: fountainhead/[email protected]
id: wait-for-test
with:
token: ${{ secrets.GITHUB_TOKEN }}
checkName: Test iOS
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- uses: "marvinpinto/action-automatic-releases@latest"
if: steps.wait-for-build.outputs.conclusion == 'success' && steps.wait-for-test.outputs.conclusion == 'success'
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false