Adding signing of image with explicit keys as well #141
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pr-checks | |
on: | |
pull_request: | |
types: [ opened, synchronize, reopened, ready_for_review ] | |
paths-ignore: | |
- '**.md' ### Ignore running when .md files change | |
jobs: | |
validate-go-basic-tests-file: | |
permissions: | |
pull-requests: write | |
uses: ./.github/workflows/go-basic-tests.yaml | |
with: | |
GO_VERSION: 1.19 | |
BUILD_PATH: "./testdata/." | |
UNIT_TESTS_PATH: "./testdata/." | |
# TEST_MULTI_ENVIRONMENTS: true | |
secrets: inherit | |
# Validate release files and release pkg. | |
validate-package-releaser-file: | |
needs: validate-go-basic-tests-file | |
permissions: | |
contents: write | |
pull-requests: write | |
uses: ./.github/workflows/package-release.yaml | |
with: | |
RELEASE: "v1.0.${{ github.run_number }}" | |
GO_VERSION: 1.19 | |
IS_DRAFT: false | |
BUILD_PATH: "./testdata/." | |
UNIT_TESTS_PATH: "./testdata/." | |
secrets: inherit | |
# TODO: Remove created tag | |