Skip to content

Commit

Permalink
chore: fix bundle path variable on release (#79)
Browse files Browse the repository at this point in the history
## Description

This fixes the bundle path variable failing on release.

## Related Issue

Fixes #N/A

## Type of change

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [X] Other (security config, docs update, etc)

## Checklist before merging

- [X] Test, docs, adr added or updated as needed
- [X] [Contributor Guide
Steps](https://github.com/defenseunicorns/uds-software-factory/blob/main/CONTRIBUTING.md#developer-workflow)
followed
  • Loading branch information
Racer159 authored Jul 23, 2024
1 parent 3f8deb4 commit c2ac312
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tag-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build Bundle
run: uds run -f tasks/publish.yaml build-bundle --set FLAVOR=${{ matrix.flavor }}
run: uds run -f tasks/publish.yaml build-bundle --set FLAVOR=${{ matrix.flavor }} --set BUNDLE_PATH="bundles/${{ matrix.bundle }}"

- name: Test Bundle
if: ${{ runner.arch != 'ARM64' }}
run: uds run -f tasks/publish.yaml test-bundle --set FLAVOR=${{ matrix.flavor }}
run: uds run -f tasks/publish.yaml test-bundle --set FLAVOR=${{ matrix.flavor }} --set BUNDLE_PATH="bundles/${{ matrix.bundle }}"

- name: Publish Bundle
run: uds run -f tasks/publish.yaml publish-bundle --set FLAVOR=${{ matrix.flavor }} --set BUNDLE_PATH="bundles/${{ matrix.bundle }}"
Expand Down

0 comments on commit c2ac312

Please sign in to comment.