From 6e82a41b68b1dd186dffe372aa787117fda96f3a Mon Sep 17 00:00:00 2001 From: Eric Promislow Date: Wed, 15 May 2024 16:49:18 -0700 Subject: [PATCH] WIP - github actions no longer likes the uses...ci.yaml line --- .github/workflows/publish.yaml | 9 ++++++++- .github/workflows/release.yaml | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 4e71de69e..d7b4448cb 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -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: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3956066eb..944de4814 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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: