fix: use single quotes in keystore path to handle paths containing sp… #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- master | |
- release | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: "Tests" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Running Tests | |
uses: ./.github/actions/tests | |
build-deploy: | |
runs-on: ubuntu-latest | |
name: "Build & Deploy" | |
needs: test | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Building And Deploying Gem | |
uses: ./.github/actions/deploy | |
with: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }} |