Skip to content
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
12 changes: 7 additions & 5 deletions .github/workflows/build-using-buildscripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
workflow_call:
inputs:
additional_artifacts:
description: 'Additional files or directories to include in artifacts'
default: ''
description: "Additional files or directories to include in artifacts"
default: ""
required: false
type: string

Expand All @@ -19,6 +19,9 @@ on:
GH_ACTIONS_SSH_KEY_BUILD_ARTIFACTS_CACHE:
required: true

permissions:
contents: read

jobs:
build_cfengine_hub_package:
name: Build package
Expand Down Expand Up @@ -122,7 +125,6 @@ jobs:
restore-keys: |
build-${{ env.PACKAGE_SHA }}


- name: Build package in docker
env:
GH_ACTIONS_SSH_KEY_BUILD_ARTIFACTS_CACHE: ${{ secrets.GH_ACTIONS_SSH_KEY_BUILD_ARTIFACTS_CACHE }}
Expand All @@ -141,8 +143,8 @@ jobs:
uses: actions/cache/save@v3
with:
path: |
artifacts
packages
artifacts
packages
key: artifacts-${{ env.PACKAGE_SHA }}

- name: Save artifacts
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/deployment-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
GH_ACTIONS_SSH_KEY_BUILD_ARTIFACTS_CACHE:
required: true

permissions:
contents: read

jobs:
deployment_tests:
name: Run simple deployment tests
Expand Down
Loading