mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-29 04:38:24 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
52 lines
1.2 KiB
YAML
52 lines
1.2 KiB
YAML
name: atlantis-base
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'docker-base/**'
|
|
- '.github/workflows/atlantis-base.yml'
|
|
branches:
|
|
- "master"
|
|
workflow_dispatch:
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: docker-base
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v1
|
|
with:
|
|
image: tonistiigi/binfmt:latest
|
|
platforms: arm64,arm
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
- name: Login to Packages Container registry
|
|
uses: docker/login-action@v1
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- run: echo "TODAY=$(date +"%Y.%m.%d")" >> $GITHUB_ENV
|
|
|
|
- name: Build and push atlantis-base:${{env.TODAY}} image
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
context: docker-base
|
|
platforms: linux/arm64/v8,linux/amd64,linux/arm/v7
|
|
push: true
|
|
tags: |
|
|
ghcr.io/runatlantis/atlantis-base:${{env.TODAY}}
|
|
ghcr.io/runatlantis/atlantis-base:latest
|