Skip to content

Commit

Permalink
Merge pull request #1 from devuri/fix-add-name
Browse files Browse the repository at this point in the history
fix: add name
  • Loading branch information
devuri authored Jul 11, 2024
2 parents 4b950b6 + 2425bf2 commit 7c302ab
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: 'Release Deployer'
description: 'A custom deployer action'
author: 'Your Name'
author: 'uriel'
inputs:
github-token:
description: 'GitHub Token'
Expand All @@ -20,6 +20,9 @@ inputs:
deploy-key:
description: 'Remote deploy key'
required: true
tag-name:
description: 'The release tag'
required: true
path:
description: 'Path to the build directory'
required: true
Expand Down Expand Up @@ -113,7 +116,7 @@ runs:
with:
files: 'app.zip;CHANGELOG.md'
repo-token: ${{ inputs.github-token }}
release-tag: ${{ steps.release.outputs.tag_name }}
release-tag: ${{ inputs.tag-name }}

- name: Send Notification to Slack
if: ${{ inputs.slack-webhook }}
Expand All @@ -123,7 +126,7 @@ runs:
SLACK_ICON: https://user-images.githubusercontent.com/4777400/225331174-d5ae1c0e-5ec0-493b-aabc-91c4cc6a14c4.png
SLACK_COLOR: ${{ job.status }}
SLACK_TITLE: ${{ inputs.slack-title }}
SLACK_MESSAGE: ${{ inputs.slack-message }} Release tag: ${{ steps.release.outputs.tag_name }}.
SLACK_MESSAGE: ${{ inputs.slack-message }} Released.
SLACK_USERNAME: ${{ inputs.slack-username }}
SLACK_WEBHOOK: ${{ inputs.slack-webhook }}
SLACK_FOOTER: ${{ inputs.slack-footer }}
Expand Down

0 comments on commit 7c302ab

Please sign in to comment.