Skip to content

Commit

Permalink
(#77) update github actions workflow to new base image
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffle committed Oct 29, 2020
1 parent 907ab4d commit ef602ac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
- name: Build and test image
run: |
export PATH=$PATH:$HOME
./build-latest.sh $SAKULI_VERSION ${{ secrets.NPM_TOKEN }} ${{ secrets.NODE_VERSION }}
./build-base.sh ${{ secrets.NODE_VERSION }}
./build-latest.sh $SAKULI_VERSION ${{ secrets.NODE_VERSION }}
env:
SAKULI_LICENSE_KEY: ${{ secrets.SAKULI_LICENSE_KEY }}
3 changes: 2 additions & 1 deletion .github/workflows/build_latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ jobs:
- name: Build and test image
run: |
export PATH=$PATH:$HOME
./build-latest.sh $SAKULI_VERSION ${{ secrets.NPM_TOKEN }} ${{ secrets.NODE_VERSION }}
./build-base.sh ${{ secrets.NODE_VERSION }}
./build-latest.sh $SAKULI_VERSION ${{ secrets.NPM_TOKEN }}
env:
SAKULI_LICENSE_KEY: ${{ secrets.SAKULI_LICENSE_KEY }}
- name: Login to Dockerhub
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
- name: Build and test image
run: |
export PATH=$PATH:$HOME
./build-release.sh $SAKULI_VERSION ${{ secrets.NPM_TOKEN }} ${{ secrets.NODE_VERSION }}
./build-base.sh ${{ secrets.NODE_VERSION }}
./build-release.sh $SAKULI_VERSION ${{ secrets.NPM_TOKEN }}
env:
SAKULI_LICENSE_KEY: ${{ secrets.SAKULI_LICENSE_KEY }}
- name: Login to Dockerhub
Expand Down

0 comments on commit ef602ac

Please sign in to comment.