Skip to content

Commit 9c615e1

Browse files
pass passphrase via env variable
1 parent 37f541e commit 9c615e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

release.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
set -ex
3-
RELEASE_VERSION_BUMP=true sbt -DflinkVersion=1.18.1 -Dgpg.passphrase="<phrase>" test "; project scala-api; release with-defaults"
4-
RELEASE_VERSION_BUMP=true sbt -DflinkVersion=1.19.1 -Dgpg.passphrase="<phrase>" test "; project scala-api; release with-defaults"
5-
RELEASE_VERSION_BUMP=true sbt -DflinkVersion=1.20.0 -Dgpg.passphrase="<phrase>" test "; project scala-api; release with-defaults"
3+
RELEASE_VERSION_BUMP=true sbt -DflinkVersion=1.18.1 -Dgpg.passphrase=$GPG_PASSPHRASE test "; project scala-api; release with-defaults"
4+
RELEASE_VERSION_BUMP=true sbt -DflinkVersion=1.19.1 -Dgpg.passphrase=$GPG_PASSPHRASE test "; project scala-api; release with-defaults"
5+
RELEASE_VERSION_BUMP=true sbt -DflinkVersion=1.20.0 -Dgpg.passphrase=$GPG_PASSPHRASE test "; project scala-api; release with-defaults"
66
wait

0 commit comments

Comments
 (0)