Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Take release artifacts from multiarch build #154

Merged
merged 1 commit into from
May 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
with:
checkName: build-image-multiarch / Building image (${{ matrix.component.name }})
token: ${{ secrets.GITHUB_TOKEN }}
timeoutSeconds: 1200
timeoutSeconds: 1800
intervalSeconds: 20

- name: Download builds from Build multiarch image workflow artifacts
Expand All @@ -96,21 +96,19 @@ jobs:
echo "Copy vApp image $VAPP_IMAGE to '$tag'"
skopeo copy --all oci-archive:$VAPP_IMAGE "$tag"

- name: ${{ matrix.component.name }} -- Download CI artifacts
uses: dawidd6/action-download-artifact@v2
with:
workflow: ci.yml
workflow_conclusion: success
path: ./ci-artifacts
- name: zip HelmChart
run: |
cd ${{github.workspace}}/HelmChart
zip -r ${{github.workspace}}/HelmChart.zip .

- name: ${{ matrix.component.name }} -- Upload assets
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
./ci-artifacts/AppManifest/AppManifest.json
./ci-artifacts/Podspec/Podspec.yaml
./ci-artifacts/HelmChart
${{github.workspace}}/AppManifest/AppManifest.json
${{github.workspace}}/Podspec/podspec.yaml
${{github.workspace}}/HelmChart.zip

release-documentation:
name: Generate release documentation
Expand Down
2 changes: 1 addition & 1 deletion .velocitas.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
},
{
"name": "devenv-github-workflows",
"version": "v2.0.3"
"version": "v2.0.4"
},
{
"name": "devenv-github-templates",
Expand Down