Skip to content

Commit

Permalink
Retry
Browse files Browse the repository at this point in the history
  • Loading branch information
digiserg committed Sep 26, 2024
1 parent 2132729 commit cdfcbc9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ jobs:
- name: Make changes to Homebrew
run: |
VERSION=$(echo $GITHUB_REF_NAME | sed 's/^v//g')
echo "VERSION=$VERSION" >> $GITHUB_ENV
#echo "VERSION=$VERSION" >> $GITHUB_ENV
case $VERSION in
*internal*)
NAME=axonopsworkbench-internal
Expand Down Expand Up @@ -342,7 +342,7 @@ jobs:
- name: Make changes to chocolatey
run: |
VERSION=$(echo $GITHUB_REF_NAME | sed 's/^v//g')
echo "VERSION=$VERSION" >> $GITHUB_ENV
#echo "VERSION=$VERSION" >> $GITHUB_ENV
cd chocolatey
git config user.name "GitHub Actions"
git config user.email "[email protected]"
Expand Down Expand Up @@ -394,6 +394,7 @@ jobs:
PUBLISH="yes"
DEBIAN_ARCHS="amd64"
REDHAT_ARCHS="x86_64"
VERSION=$(echo $GITHUB_REF_NAME | sed 's/^v//g')
case $VERSION in
*internal*)
PUBLISH="no"
Expand All @@ -413,6 +414,7 @@ jobs:
- name: Push Debian package
if: env.PUBLISH == 'yes'
run: |
VERSION=$(echo $GITHUB_REF_NAME | sed 's/^v//g')
for arch in ${{ env.DEBIAN_ARCHS }}; do
curl -sLO "https://github.com/axonops/axonops-workbench-cassandra/releases/download/$VERSION/AxonOps.Workbench-$VERSION-linux-${arch}.deb"
gcloud config set project axonops-public
Expand All @@ -422,6 +424,7 @@ jobs:
- name: Push RedHat package
if: env.PUBLISH == 'yes'
run: |
VERSION=$(echo $GITHUB_REF_NAME | sed 's/^v//g')
for arch in ${{ env.REDHAT_ARCHS }}; do
curl -sLO "https://github.com/axonops/axonops-workbench-cassandra/releases/download/$VERSION/AxonOps.Workbench-$VERSION-linux-${arch}.rpm"
gcloud config set project axonops-public
Expand Down

0 comments on commit cdfcbc9

Please sign in to comment.