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

Commit 67f07ea

Browse files
author
Borja Lopez
committed
ci: Change workflow
1 parent ec34dea commit 67f07ea

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

.github/workflows/app-component-build.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ jobs:
4545
steps:
4646
- name: CheckOut
4747
uses: actions/checkout@v2
48+
with:
49+
fetch-depth: 0
4850

4951
- name: Generate a release tag
5052
uses: ./.github/actions
@@ -65,6 +67,8 @@ jobs:
6567
steps:
6668
- name: CheckOut
6769
uses: actions/checkout@v2
70+
with:
71+
fetch-depth: 0
6872

6973
- uses: chrisdickinson/setup-yq@latest
7074
- name: Get component versions
@@ -127,6 +131,9 @@ jobs:
127131

128132
- name: CheckOut
129133
uses: actions/checkout@v2
134+
with:
135+
fetch-depth: 0
136+
ref: "app-${{needs.create-release-tag.outputs.tag}}${{needs.create-fix-tag.outputs.tag}}"
130137

131138
- name: Changelog
132139
uses: ./.github/actions/git-chglog

.github/workflows/byebye-component-build.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ jobs:
4747
steps:
4848
- name: CheckOut
4949
uses: actions/checkout@v2
50+
with:
51+
fetch-depth: 0
5052

5153
- name: Generate a release tag
5254
uses: ./.github/actions
@@ -67,6 +69,8 @@ jobs:
6769
steps:
6870
- name: CheckOut
6971
uses: actions/checkout@v2
72+
with:
73+
fetch-depth: 0
7074

7175
- uses: chrisdickinson/setup-yq@latest
7276
- name: Get component versions
@@ -129,7 +133,8 @@ jobs:
129133
- name: CheckOut
130134
uses: actions/checkout@v2
131135
with:
132-
ref: ${{needs.create-release-tag.outputs.tag}}${{needs.create-fix-tag.outputs.tag}}
136+
fetch-depth: 0
137+
ref: "byebye-${{needs.create-release-tag.outputs.tag}}${{needs.create-fix-tag.outputs.tag}}"
133138

134139
- name: Changelog
135140
uses: ./.github/actions/git-chglog
@@ -148,4 +153,4 @@ jobs:
148153
${{ steps.Changelog.outputs.changelog }}
149154
draft: false
150155
prerelease: false
151-
156+

.github/workflows/hello-component-build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ jobs:
4747
steps:
4848
- name: CheckOut
4949
uses: actions/checkout@v2
50+
with:
51+
fetch-depth: 0
5052

5153
- name: Generate a release tag
5254
uses: ./.github/actions
@@ -67,6 +69,8 @@ jobs:
6769
steps:
6870
- name: CheckOutversion
6971
uses: actions/checkout@v2
72+
with:
73+
fetch-depth: 0
7074

7175
- uses: chrisdickinson/setup-yq@latest
7276
- name: Get component versions
@@ -129,7 +133,8 @@ jobs:
129133
- name: CheckOut
130134
uses: actions/checkout@v2
131135
with:
132-
ref: ${{needs.create-release-tag.outputs.tag}}${{needs.create-fix-tag.outputs.tag}}
136+
fetch-depth: 0
137+
ref: "hello-${{needs.create-release-tag.outputs.tag}}${{needs.create-fix-tag.outputs.tag}}"
133138

134139
- name: Changelog
135140
uses: ./.github/actions/git-chglog

0 commit comments

Comments
 (0)