Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
ci: Change workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
blopezpi committed Feb 23, 2022
1 parent ec34dea commit 67f07ea
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/app-component-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ jobs:
steps:
- name: CheckOut
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Generate a release tag
uses: ./.github/actions
Expand All @@ -65,6 +67,8 @@ jobs:
steps:
- name: CheckOut
uses: actions/checkout@v2
with:
fetch-depth: 0

- uses: chrisdickinson/setup-yq@latest
- name: Get component versions
Expand Down Expand Up @@ -127,6 +131,9 @@ jobs:

- name: CheckOut
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: "app-${{needs.create-release-tag.outputs.tag}}${{needs.create-fix-tag.outputs.tag}}"

- name: Changelog
uses: ./.github/actions/git-chglog
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/byebye-component-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ jobs:
steps:
- name: CheckOut
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Generate a release tag
uses: ./.github/actions
Expand All @@ -67,6 +69,8 @@ jobs:
steps:
- name: CheckOut
uses: actions/checkout@v2
with:
fetch-depth: 0

- uses: chrisdickinson/setup-yq@latest
- name: Get component versions
Expand Down Expand Up @@ -129,7 +133,8 @@ jobs:
- name: CheckOut
uses: actions/checkout@v2
with:
ref: ${{needs.create-release-tag.outputs.tag}}${{needs.create-fix-tag.outputs.tag}}
fetch-depth: 0
ref: "byebye-${{needs.create-release-tag.outputs.tag}}${{needs.create-fix-tag.outputs.tag}}"

- name: Changelog
uses: ./.github/actions/git-chglog
Expand All @@ -148,4 +153,4 @@ jobs:
${{ steps.Changelog.outputs.changelog }}
draft: false
prerelease: false


7 changes: 6 additions & 1 deletion .github/workflows/hello-component-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ jobs:
steps:
- name: CheckOut
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Generate a release tag
uses: ./.github/actions
Expand All @@ -67,6 +69,8 @@ jobs:
steps:
- name: CheckOutversion
uses: actions/checkout@v2
with:
fetch-depth: 0

- uses: chrisdickinson/setup-yq@latest
- name: Get component versions
Expand Down Expand Up @@ -129,7 +133,8 @@ jobs:
- name: CheckOut
uses: actions/checkout@v2
with:
ref: ${{needs.create-release-tag.outputs.tag}}${{needs.create-fix-tag.outputs.tag}}
fetch-depth: 0
ref: "hello-${{needs.create-release-tag.outputs.tag}}${{needs.create-fix-tag.outputs.tag}}"

- name: Changelog
uses: ./.github/actions/git-chglog
Expand Down

0 comments on commit 67f07ea

Please sign in to comment.