Skip to content

Commit 4a0fa19

Browse files
committed
add GH_TOKEN env for actions
1 parent 155edf1 commit 4a0fa19

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,8 @@ jobs:
193193
restore-keys: |
194194
${{ runner.os }}-maven-
195195
196-
- name: Coverage report
196+
- name: Download and test
197197
run: |
198198
mvn clean test -Dh3.github.artifacts=true
199+
env:
200+
GH_TOKEN: ${{ github.token }}

src/main/c/h3-java/pull-from-github.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# This script expects to be run from the project's base directory (where
2323
# pom.xml is) as part of the Maven build process.
2424

25-
set -ex
25+
set -eox pipefail
2626

2727
GIT_REVISION=$(git rev-parse HEAD)
2828
EXTRACT_TO=src/main/resources

0 commit comments

Comments
 (0)