Skip to content

Commit

Permalink
wip: fix rebase conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhail-sakhnov committed Dec 10, 2024
1 parent 567f3af commit 053a677
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ jobs:
file: neonvm-daemon/Dockerfile
cache-from: type=registry,ref=cache.neon.build/neonvm-daemon:cache
cache-to: ${{ github.ref_name == 'main' && 'type=registry,ref=cache.neon.build/neonvm-daemon:cache,mode=max' || '' }}
tags: ${{ needs.tags.outputs.daemon }}
tags: ${{ steps.tags.outputs.daemon }}
build-args: |
GO_BASE_IMG=${{ env.GO_BASE_IMG }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build-test-vm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,10 @@ jobs:
build:
# nb: use format(..) to catch both inputs.skip = true AND inputs.skip = 'true'.
if: ${{ format('{0}', inputs.skip) != 'true' }}
needs: tags
runs-on: [ self-hosted, gen3, large ]

outputs:
vm-postgres-16-bullseye: ${{ steps.show-tags.outputs.vm-postgres-16-bullseye }}

Check failure on line 57 in .github/workflows/build-test-vm.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/build-test-vm.yaml#L57

property "show-tags" is not defined in object type {tags: {conclusion: string; outcome: string; outputs: {string => string}}} [expression]
Raw output
.github/workflows/build-test-vm.yaml:57:36: property "show-tags" is not defined in object type {tags: {conclusion: string; outcome: string; outputs: {string => string}}} [expression]
daemon: ${{ steps.show-tags.outputs.daemon }}

Check failure on line 58 in .github/workflows/build-test-vm.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/build-test-vm.yaml#L58

property "show-tags" is not defined in object type {tags: {conclusion: string; outcome: string; outputs: {string => string}}} [expression]
Raw output
.github/workflows/build-test-vm.yaml:58:19: property "show-tags" is not defined in object type {tags: {conclusion: string; outcome: string; outputs: {string => string}}} [expression]
steps:
# tags converted to be a step and moved here to be in the same strategy contextt
- id: tags
Expand Down

0 comments on commit 053a677

Please sign in to comment.