Skip to content

Commit

Permalink
fix: publish.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianEstrada committed Mar 19, 2023
1 parent e46b51e commit 28eb051
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,9 @@ jobs:
steps:
- name: Download a single artifact
uses: actions/download-artifact@v3
id: download
with:
name: slack-notifier-cli
- name: Give artifact correct permissions
run: chmod +x ./slack-notifier-cli
- name: Run changelog cli action
uses: monta-app/changelog-cli-action@main
with:
Expand All @@ -60,14 +59,11 @@ jobs:
output: "slack"
slack-token: ${{ secrets.SLACK_APP_TOKEN }}
slack-channel: "#releases"
- name: print directory
run: |
ls -a
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: slack-notifier-cli
file: ${{steps.download.outputs.download-path}}
asset_name: slack-notifier-cli
tag: ${{ github.ref }}
overwrite: true

0 comments on commit 28eb051

Please sign in to comment.