Sha256: cba2211d1a6ce4b2c1c5739eec7c332c37b5dba129a235af0b16747d9f117ae7

Contents?: true

Size: 872 Bytes

Versions: 12

Compression:

Stored size: 872 Bytes

Contents

name: release docker image

on:
  release:
    types: [published]

jobs:
  build:
    name: Build + Publish Container Image
    runs-on: ubuntu-latest

    steps:
    - name: Check out the repo
      uses: actions/checkout@v3

    - name: Set up Docker Buildx
      uses: docker/setup-buildx-action@v1

    - name: Login to  GitHub Container Repository
      uses: docker/login-action@v1
      with:
        registry: ghcr.io
        username: ${{ github.repository_owner }}
        password: ${{ secrets.GHCR_PUSH_TOKEN }}

    - name: Build and push Container Image to GitHub Container Repository
      uses: docker/build-push-action@v2
      with:
        context: .
        file: ./Dockerfile
        push: true
        tags: ghcr.io/base2services/guardian:${{ github.event.release.tag_name }}
        build-args: GUARDIAN_VERSION=${{ github.event.release.tag_name }}

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
cfn-guardian-0.11.10 .github/workflows/release-image.yml
cfn-guardian-0.11.9 .github/workflows/release-image.yml
cfn-guardian-0.11.8 .github/workflows/release-image.yml
cfn-guardian-0.11.7 .github/workflows/release-image.yml
cfn-guardian-0.11.6 .github/workflows/release-image.yml
cfn-guardian-0.11.5 .github/workflows/release-image.yml
cfn-guardian-0.11.4 .github/workflows/release-image.yml
cfn-guardian-0.11.3 .github/workflows/release-image.yml
cfn-guardian-0.11.2 .github/workflows/release-image.yml
cfn-guardian-0.11.1 .github/workflows/release-image.yml
cfn-guardian-0.11.0 .github/workflows/release-image.yml
cfn-guardian-0.10.4 .github/workflows/release-image.yml