Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
Specify @main ref for reusable workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Steffo99 committed Dec 22, 2022
1 parent 40a2c92 commit 6731d72
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,26 @@ jobs:
uses: ./.github/workflows/test.yml

build:
uses: Steffo99/.github/.github/workflows/build-poetry.yml
uses: Steffo99/.github/.github/workflows/build-poetry.yml@main

github:
uses: Steffo99/.github/.github/workflows/release-poetry-github.yml
uses: Steffo99/.github/.github/workflows/release-poetry-github.yml@main
needs:
- test
- build

pypi:
uses: Steffo99/.github/.github/workflows/release-poetry-pypi.yml
uses: Steffo99/.github/.github/workflows/release-poetry-pypi.yml@main
needs:
- test
- build

ghcrio:
uses: Steffo99/.github/.github/workflows/buildrelease-docker.yml
uses: Steffo99/.github/.github/workflows/buildrelease-docker.yml@main
needs:
- test

portainer:
uses: Steffo99/.github/.github/workflows/deploy-portainer.yml
uses: Steffo99/.github/.github/workflows/deploy-portainer.yml@main
needs:
- ghcrio
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ on:

jobs:
test:
uses: Steffo99/.github/.github/workflows/test-poetry-compileall.yml
uses: Steffo99/.github/.github/workflows/test-poetry-compileall.yml@main

0 comments on commit 6731d72

Please sign in to comment.