Skip to content

Commit

Permalink
WIP - github actions no longer likes the uses...ci.yaml line
Browse files Browse the repository at this point in the history
  • Loading branch information
ericpromislow committed May 15, 2024
1 parent 07ed25a commit 6e82a41
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,14 @@ env:

jobs:
ci :
uses: ./.github/workflows/ci.yaml
steps:
- name : Checkout repository
uses : actions/checkout@v4
with :
fetch-depth : 0
- name : build
run : make build
# uses: ./.github/workflows/ci.yaml
permissions:
contents: read
push:
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@ permissions:

jobs:
ci:
uses: ./.github/workflows/ci.yaml
steps:
- name : Checkout repository
uses : actions/checkout@v4
with :
fetch-depth : 0
- name : build
run : make build
#uses: ./.github/workflows/ci.yaml
permissions:
contents: read
goreleaser:
Expand Down

0 comments on commit 6e82a41

Please sign in to comment.