Skip to content

Commit

Permalink
Try fix CI (#320)
Browse files Browse the repository at this point in the history
  • Loading branch information
guizmaii authored Sep 4, 2023
1 parent b09d5df commit 8534d29
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ jobs:
check-latest: true

- name: Scala ${{ matrix.scala }} Building ${{ matrix.module }}
env:
SCALA_VERSION: ${{ matrix.scala }}
run: |
export SCALA_VERSION=${{ matrix.scala }}
echo "SCALA_VERSION='$SCALA_VERSION'"
./build/build.sh ${{ matrix.module }}
Expand All @@ -53,10 +54,11 @@ jobs:
java-version: '8'
check-latest: true
- run: |
export ENCRYPTION_PASSWORD=${{ secrets.ENCRYPTION_PASSWORD }}
export PGP_PASSPHRASE=${{ secrets.PGP_PASSPHRASE }}
export PULL_REQUEST=${{ !!github.event.pull_request }}
echo "PULL_REQUEST='$PULL_REQUEST'"
export BRANCH=$(git for-each-ref ${{ github.ref }} --format='%(refname:short)')
echo "BRANCH='$BRANCH'"
./build/release.sh ${{ matrix.module }}
env:
ENCRYPTION_PASSWORD: ${{ secrets.ENCRYPTION_PASSWORD }}
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PULL_REQUEST: ${{ !!github.event.pull_request }}

0 comments on commit 8534d29

Please sign in to comment.