Skip to content

rename to rubykaigi-net #3

rename to rubykaigi-net

rename to rubykaigi-net #3

{
"jobs": {
"build": {
"name": "build",
"permissions": {
"contents": "read",
"id-token": "write"
},
"runs-on": "ubuntu-latest",
"steps": [
{
"uses": "docker/setup-qemu-action@v2"
},
{
"uses": "docker/setup-buildx-action@v2"
},
{
"uses": "aws-actions/configure-aws-credentials@v1",
"with": {
"aws-region": "ap-northeast-1",
"role-skip-session-tagging": true,
"role-to-assume": "arn:aws:iam::005216166247:role/GhaDockerPush"
}
},
{
"id": "login-ecr",
"uses": "aws-actions/amazon-ecr-login@v1"
},
{
"uses": "docker/build-push-action@v3",
"with": {
"context": "{{defaultContext}}:docker/s3tftpd-healthz",
"platforms": "linux/arm64",
"push": true,
"tags": "${{ steps.login-ecr.outputs.registry }}/s3tftpd-healthz:${{ github.sha }},${{ steps.login-ecr.outputs.registry }}/s3tftpd-healthz:latest"
}
}
]
}
},
"name": "docker-s3tftpd-healthz",
"on": {
"push": {
"branches": [
"master",
"test"
],
"paths": [
"docker/s3tftpd-healthz/**",
".github/workflows/docker-s3tftpd-healthz.yml"
]
}
}
}