Skip to content
This repository has been archived by the owner on Oct 25, 2024. It is now read-only.

Commit

Permalink
Minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mikBighne98 authored Dec 24, 2022
1 parent e3b7145 commit a6bd4bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,16 @@ runs:
echo "SPACE_ACCESS_TOKEN=${{ inputs.access_token }}" >> $GITHUB_ENV
- name: Push changes to Deta Space
if: ${{ inputs.space_push == "true" }}
if: ${{ inputs.space_push == 'true' }}
shell: script -q -e -c "bash {0}"
run: |
space push --id "${{ inputs.project_id }}"
- name: Create a release on Deta Space
if: ${{ inputs.space_release == "true" }}
if: ${{ inputs.space_release == 'true' }}
shell: script -q -e -c "bash {0}"
run: |
if [[ ${{ inputs.list_on_discovery }} == "true" ]]; then
if [[ ${{ inputs.list_on_discovery }} == true ]]; then
space release --id "${{ inputs.project_id }}" --version "${{ inputs.release_version }}" --listed --confirm
else
space release --id "${{ inputs.project_id }}" --version "${{ inputs.release_version }}" --confirm
Expand Down

0 comments on commit a6bd4bd

Please sign in to comment.