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 f33f1d9 commit 3508382Copy full SHA for 3508382
.github/workflows/notify-discord.yml
@@ -1,17 +1,16 @@
1
name: Notify Discord
2
3
on:
4
- push:
5
- branches:
6
- - main
+ release:
+ types: [published]
7
workflow_dispatch:
8
9
jobs:
10
notify-discord:
11
runs-on: ubuntu-latest
12
steps:
13
- name: Checkout
14
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
15
16
- name: Notify Discord
17
uses: SethCohen/github-releases-to-discord@v1.13.1
.github/workflows/release-please.yml
@@ -0,0 +1,16 @@
+name: Release Please
+
+on:
+ push:
+ branches:
+ - main
+jobs:
+ release-please:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Release Please
+ uses: google-github-actions/release-please-action@v4
+ with:
+ release-type: python
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments