From 417ef709060b16d588e6468ac1faefbd401a252d Mon Sep 17 00:00:00 2001 From: Caleb Lloyd <2414837+caleblloyd@users.noreply.github.com> Date: Tue, 9 Apr 2024 16:31:58 -0400 Subject: [PATCH] move release workflow to deps patch release (#176) Signed-off-by: Caleb Lloyd --- .github/workflows/deps-release-tag.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deps-release-tag.yaml b/.github/workflows/deps-release-tag.yaml index 918dc97d..ac70c0e1 100644 --- a/.github/workflows/deps-release-tag.yaml +++ b/.github/workflows/deps-release-tag.yaml @@ -50,8 +50,8 @@ jobs: commit="$(git rev-parse HEAD)" git fetch origin refs/tags/"${{ steps.tag.outputs.old-ref-name }}" git checkout -b deps "${{ steps.tag.outputs.old-ref-name }}" - git restore --source="$commit" ./cicd - git add ./cicd + git restore --source="$commit" ./cicd ./.github/workflows/release.yaml + git add ./cicd ./.github/workflows/release.yaml if git commit -m "bump dependency release to ${{ steps.tag.outputs.new-version }}"; then git tag "${{ steps.tag.outputs.new-ref-name }}" git push origin "${{ steps.tag.outputs.new-ref-name }}"