-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: release libs, server, bridge with manual workflows
Changes all workflows related to Releases so they are manually triggered. Continuing to iron out the kinks of the new `dist` based workflow used for building/releasing the CLI. It looks as though the "release published" event we tried to trigger these on doesn't fire in some cases. Rumors suggest having a release published by an automation rather than a real person could be the difference. For now as a workaround, let's trigger these manually. It's tedious, but we can likely add One More Workflow to kick them all off on our behalf as a 2nd step.
- Loading branch information
1 parent
3c76055
commit 2810918
Showing
10 changed files
with
13 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
name: Bridge Release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
on: workflow_dispatch | ||
|
||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
name: C# Release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
on: workflow_dispatch | ||
|
||
|
||
jobs: | ||
dotnet: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
name: Java Release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
on: workflow_dispatch | ||
|
||
|
||
jobs: | ||
dotnet: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
name: Kotlin Release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
on: workflow_dispatch | ||
|
||
jobs: | ||
kotlin: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
name: PHP Release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
on: workflow_dispatch | ||
|
||
jobs: | ||
packagist: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
name: Python Release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
on: workflow_dispatch | ||
|
||
jobs: | ||
build: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
name: Ruby Release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
on: workflow_dispatch | ||
|
||
jobs: | ||
dotnet: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
name: Rust Release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
on: workflow_dispatch | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
name: Server Release | ||
|
||
on: | ||
release: | ||
types: [published] | ||
on: workflow_dispatch | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|