Skip to content

Commit ecc32f2

Browse files
committed
Try updating autorelease vendoring
1 parent 3931c99 commit ecc32f2

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/autorelease-default-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
INSTALL_AUTORELEASE="python -m pip install autorelease==0.2.6"
1+
INSTALL_AUTORELEASE="python -m pip install autorelease==0.2.3"
22
if [ -f autorelease-env.sh ]; then
33
source autorelease-env.sh
44
fi

.github/workflows/autorelease-prep.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# File vencdored from Autorelease; specific version information should be in
2+
# the INSTALL_AUTORELEASE variable in autorelease-default-env.sh
13
name: "Autorelease"
24
on:
35
pull_request:
@@ -51,7 +53,9 @@ jobs:
5153
python-version: "3.x"
5254
- run: | # TODO: move this to an action
5355
source ./.github/workflows/autorelease-default-env.sh
54-
if [ -f "autorelease-env.sh" ]; then
56+
if [ -f ".autorelease/test-testpypi.sh" ]; then
57+
source ./autorelease/test-testpypi.sh
58+
elif [ -f "autorelease-env.sh" ]; then
5559
cat autorelease-env.sh >> $GITHUB_ENV
5660
fi
5761
eval $INSTALL_AUTORELEASE

0 commit comments

Comments
 (0)