Skip to content

Commit

Permalink
fix: update
Browse files Browse the repository at this point in the history
  • Loading branch information
lakshmiravalir committed Aug 3, 2021
1 parent 92dc5af commit 89b225e
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,36 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
oclifRelease:
name: Publish for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
needs: [release]
strategy:
matrix:
include:
- os: ubuntu-latest
artifact_name: orchestrator-v0.0.0
asset_name: orchestrator-v0.0.0-linux-x64
# - os: windows-latest
# artifact_name: mything.exe
# asset_name: mything-windows-amd64
# - os: macos-latest
# artifact_name: mything
# asset_name: mything-macos-amd64

steps:
- uses: actions/checkout@v2
- name: 'Get Previous tag'
id: previoustag
uses: "WyriHaximus/github-action-get-previous-tag@v1"
with:
fallback: 1.0.0
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/deb/${{ matrix.artifact_name }}
asset_name: ${{ matrix.asset_name }}
tag: ${{ steps.previoustag.outputs.tag }}


2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $ npm install -g orchestrate-command-status
$ orchestrator COMMAND
running command...
$ orchestrator (-v|--version|version)
orchestrate-command-status/0.0.24-development darwin-x64 node-v16.5.0
orchestrate-command-status/0.0.0-development darwin-x64 node-v16.5.0
$ orchestrator --help [COMMAND]
USAGE
$ orchestrator COMMAND
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "orchestrate-command-status",
"description": "Send the sms notification after execution of command",
"version": "0.0.0-development",
"version": "0.0.0",
"author": "Ravali Rimmalapudi",
"bin": {
"orchestrator": "./bin/run"
Expand Down

0 comments on commit 89b225e

Please sign in to comment.