Skip to content

Commit

Permalink
Fix release flow
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Brison committed May 13, 2020
1 parent faac7fb commit 4cb6cb1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cd_publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
env:
GIT_REF: ${{ github.ref }}
run: |
release_name=${GIT_REF#refs/tags/release/}
release_name=${GIT_REF#refs/tags/}
echo "Release name=$release_name"
echo "::set-output name=release_name::$release_name"
Expand All @@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
android_api: [28, 29]
android_ndk: ["--android_ndk",""]
android_ndk: ["--android-ndk",""]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -36,4 +36,4 @@ jobs:
env:
RELEASE_NAME: ${{ needs.job_compute_release_name.outputs.release_name }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
run: ./ci_cd.sh --build --test --deploy --android_api ${{ matrix.android_api }} ${{ matrix.android_ndk }}
run: ./ci_cd.sh --build --test --deploy --android-api ${{ matrix.android_api }} ${{ matrix.android_ndk }}

0 comments on commit 4cb6cb1

Please sign in to comment.