Skip to content

Commit

Permalink
DEV: remove version specification from release.yml "uses" statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
qchempku2017 committed Sep 21, 2023
1 parent 1bbce2a commit 7ab78a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ on:

jobs:
test:
uses: ./.github/workflows/test.yml@main
uses: ./.github/workflows/test.yml

build:
needs: test
uses: ./.github/workflows/build.yml@main
uses: ./.github/workflows/build.yml

release-docs:
needs: test
uses: ./.github/workflows/docs.yml@main
uses: ./.github/workflows/docs.yml

release-pypi:
needs: [build, docs]
Expand Down

0 comments on commit 7ab78a3

Please sign in to comment.