Skip to content

Commit

Permalink
fix: paint that shed differently
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiphe committed Sep 6, 2022
1 parent 3edba69 commit 5b9bed0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "Release"

description: "Semantically release package to internal songtradr npm"
description: "Semantically release package"

inputs:
directory:
Expand All @@ -24,13 +24,13 @@ runs:
steps:
- name: 🗺 Prepare release
shell: bash
if: inputs.add_config == true
if: ${{ (inputs.add_config == true) }}
run: |
cd ${{ inputs.directory }}
cp ${{ github.action_path }}release.config.template.js ./release.config.js
- name: 🚀 Release
if: github.event_name == 'push'
if: ${{ (github.event_name == 'push') }}
shell: bash
run: |
cd ${{ inputs.directory }}
Expand All @@ -41,7 +41,7 @@ runs:
NODE_AUTH_TOKEN: ${{ inputs.token }}

- name: 🛫 Pre-Release
if: inputs.pre_release == true && github.event_name == 'pull_request'
if: ${{ (inputs.pre_release == true) && (github.event_name == 'pull_request') }}
shell: bash
run: |
cd ${{ inputs.directory }}
Expand Down

0 comments on commit 5b9bed0

Please sign in to comment.