File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ name : test
2+
3+ on :
4+ pull_request :
5+ push :
6+ tags-ignore :
7+ - ' **'
8+
9+ jobs :
10+ docker :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v6
14+
15+ - name : Set up Docker Buildx
16+ uses : docker/setup-buildx-action@v4
17+
18+ - name : build
19+ uses : docker/build-push-action@v7
20+ with :
21+ load : true
22+ tags : aws-codedeploy-action:latest
23+
24+ - name : Test installed tools
25+ run : |
26+ set -e
27+ docker run --rm --entrypoint jq aws-codedeploy-action:latest --version
28+ docker run --rm --entrypoint unzip aws-codedeploy-action:latest -v
29+ docker run --rm --entrypoint zip aws-codedeploy-action:latest -v
30+ docker run --rm --entrypoint tar aws-codedeploy-action:latest --version
31+ docker run --rm --entrypoint gzip aws-codedeploy-action:latest --version
You can’t perform that action at this time.
0 commit comments