Skip to content

Commit fd5638b

Browse files
Take artifacts from multiarch build (instead of CI) (#154)
1 parent 834eb20 commit fd5638b

2 files changed

Lines changed: 9 additions & 11 deletions

File tree

.github/workflows/release.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
with:
7373
checkName: build-image-multiarch / Building image (${{ matrix.component.name }})
7474
token: ${{ secrets.GITHUB_TOKEN }}
75-
timeoutSeconds: 1200
75+
timeoutSeconds: 1800
7676
intervalSeconds: 20
7777

7878
- name: Download builds from Build multiarch image workflow artifacts
@@ -96,21 +96,19 @@ jobs:
9696
echo "Copy vApp image $VAPP_IMAGE to '$tag'"
9797
skopeo copy --all oci-archive:$VAPP_IMAGE "$tag"
9898
99-
- name: ${{ matrix.component.name }} -- Download CI artifacts
100-
uses: dawidd6/action-download-artifact@v2
101-
with:
102-
workflow: ci.yml
103-
workflow_conclusion: success
104-
path: ./ci-artifacts
99+
- name: zip HelmChart
100+
run: |
101+
cd ${{github.workspace}}/HelmChart
102+
zip -r ${{github.workspace}}/HelmChart.zip .
105103
106104
- name: ${{ matrix.component.name }} -- Upload assets
107105
uses: softprops/action-gh-release@v1
108106
if: startsWith(github.ref, 'refs/tags/')
109107
with:
110108
files: |
111-
./ci-artifacts/AppManifest/AppManifest.json
112-
./ci-artifacts/Podspec/Podspec.yaml
113-
./ci-artifacts/HelmChart
109+
${{github.workspace}}/AppManifest/AppManifest.json
110+
${{github.workspace}}/Podspec/podspec.yaml
111+
${{github.workspace}}/HelmChart.zip
114112
115113
release-documentation:
116114
name: Generate release documentation

.velocitas.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
{
88
"name": "devenv-github-workflows",
9-
"version": "v2.0.3"
9+
"version": "v2.0.4"
1010
},
1111
{
1212
"name": "devenv-github-templates",

0 commit comments

Comments
 (0)