Skip to content

Commit

Permalink
feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Racer159 committed Jun 20, 2024
1 parent defc8df commit 4701882
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tag-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ jobs:
publish-package:
needs: tag-new-version
if: ${{ needs.tag-new-version.outputs.release_created == 'true' }}
runs-on: ${{ matrix.architecture == 'arm64' && 'uds-ubuntu-arm64-8-core' || 'uds-ubuntu-big-boy-8-core' }}
# TODO: (@WSTARR) since we don't run the tests on arm currently we don't need to use the 8 core
runs-on: ${{ matrix.architecture == 'arm64' && 'uds-ubuntu-arm64-4-core' || 'uds-ubuntu-big-boy-8-core' }}
name: Publish ${{ matrix.flavor }} ${{ matrix.architecture }}
strategy:
matrix:
Expand Down Expand Up @@ -51,6 +52,9 @@ jobs:

- name: Build Package
run: uds run -f tasks/publish.yaml build-package --set FLAVOR=${{ matrix.flavor }}

Check failure on line 55 in .github/workflows/tag-and-release.yaml

View workflow job for this annotation

GitHub Actions / Lint

55:1 [trailing-spaces] trailing spaces
- name: Build Bundle
run: uds run -f tasks/publish.yaml build-test-bundle --set FLAVOR=${{ matrix.flavor }}

- name: Test Package
if: ${{ runner.arch != 'ARM64' }}
Expand Down
8 changes: 6 additions & 2 deletions tasks/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,15 @@ tasks:
actions:
- task: create:package

- name: test-package
description: Test the package
- name: build-test-bundle
description: Build the test bundle
actions:
- task: dependencies:create
- task: create:test-bundle

- name: test-package
description: Test the package
actions:
- task: setup:k3d-test-cluster
- task: deploy:test-bundle
- task: setup:create-doug-user
Expand Down

0 comments on commit 4701882

Please sign in to comment.