Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
docker
/
metadata-action
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Security
Insights
Additional navigation options
Code
Pull requests
Actions
Security
Insights
Files
00e2c9d
.github
ISSUE_TEMPLATE
workflows
ci.yml
test.yml
validate.yml
CODEOWNERS
CONTRIBUTING.md
SUPPORT.md
dependabot.yml
metadata-action.png
__mocks__
__tests__
dist
src
test
.dockerignore
.editorconfig
.eslintrc.json
.gitattributes
.gitignore
.prettierrc.json
LICENSE
README.md
UPGRADE.md
action.yml
codecov.yml
dev.Dockerfile
docker-bake.hcl
jest.config.ts
package.json
tsconfig.json
yarn.lock
Breadcrumbs
metadata-action
/
.github
/
workflows
/
validate.yml
View Runs
Blame
Blame
Latest commit
History
History
41 lines (38 loc) · 848 Bytes
Breadcrumbs
metadata-action
/
.github
/
workflows
/
validate.yml
Top
File metadata and controls
Code
Blame
41 lines (38 loc) · 848 Bytes
Raw
name: validate on: push: branches: - 'master' - 'releases/v*' pull_request: jobs: prepare: runs-on: ubuntu-latest outputs: targets: ${{ steps.targets.outputs.matrix }} steps: - name: Checkout uses: actions/checkout@v3 - name: Targets matrix id: targets run: | echo "matrix=$(docker buildx bake validate --print | jq -cr '.group.validate.targets')" >> $GITHUB_OUTPUT validate: runs-on: ubuntu-latest needs: - prepare strategy: fail-fast: false matrix: target: ${{ fromJson(needs.prepare.outputs.targets) }} steps: - name: Checkout uses: actions/checkout@v3 - name: Validate uses: docker/bake-action@v3 with: targets: ${{ matrix.target }}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
You can’t perform that action at this time.