-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
don't upload distributables from every push to unstable release
- Loading branch information
1 parent
4120af2
commit fdd7890
Showing
2 changed files
with
4 additions
and
20 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
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 |
---|---|---|
|
@@ -63,17 +63,6 @@ jobs: | |
echo "PY3_WHL=$(ls artifacts/dist/*.whl)" >> $GITHUB_ENV | ||
echo "PY3_WHL=$(ls artifacts/dist/*.whl)" | ||
- name: Update unstable release assets and text | ||
uses: actions/github-script@v7 | ||
env: | ||
SEARCH_PATTERN: "artifacts/*" | ||
with: | ||
github-token: ${{secrets.GITHUB_TOKEN}} | ||
script: | | ||
const script = require('./.github/actions/update_unstable.js'); | ||
const output = await script({github, context, glob}); | ||
console.log(output); | ||
- name: Update current release | ||
if: startsWith(github.ref, 'refs/tags') | ||
uses: johnwbyrd/[email protected] | ||
|