We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8b4d1c commit ef92a12Copy full SHA for ef92a12
.github/workflows/ci.yml
@@ -1,5 +1,4 @@
1
-name: Scala CI
2
-
+name: CI
3
on:
4
push:
5
branches: [ main ]
.github/workflows/release.yml
@@ -1,11 +1,15 @@
name: Release
+ workflow_run:
+ workflows: ["CI"]
+ types: [completed]
6
7
branches: [master, main]
8
tags: ["*"]
9
jobs:
10
publish:
11
runs-on: ubuntu-20.04
12
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
13
steps:
14
- uses: actions/checkout@v2.3.4
15
with:
0 commit comments