Skip to content

Commit

Permalink
Make PR ready
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Nikitin <andrew.nikitin@cheqd.io>
  • Loading branch information
Andrew Nikitin committed May 20, 2022
1 parent bee9612 commit 46dfcce
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 23 deletions.
23 changes: 11 additions & 12 deletions .github/workflows/dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,23 @@ concurrency:

jobs:

# call-lint:
# name: "Lint"
# uses: ./.github/workflows/lint.yml
#
call-lint:
name: "Lint"
uses: ./.github/workflows/lint.yml

call-build:
name: "Build"
# needs: call-lint
needs: call-lint
uses: ./.github/workflows/build.yml
#
# call-test:
# name: "Tests"
# needs: call-build
# uses: ./.github/workflows/test.yml

call-test:
name: "Tests"
needs: call-build
uses: ./.github/workflows/test.yml

call-release:
name: "Release"
# needs: [call-test, call-build]
needs: call-build
needs: [call-test, call-build]
if: startsWith(github.ref, 'refs/tags/v')
uses: ./.github/workflows/release.yml
with:
Expand Down
12 changes: 1 addition & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,4 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: did-resolver
path: dist/*

# - uses: "marvinpinto/action-automatic-releases@latest"
# with:
# repo_token: "${{ secrets.GITHUB_TOKEN }}"
# automatic_release_tag: "${{ env.GITHUB_REF_NAME }}"
# prerelease: true
# draft: true
# files: |
#
# cheqd-noded
path: dist/*

0 comments on commit 46dfcce

Please sign in to comment.