Sha256: 9d0c3c8d97a84e96973190a7d7b76d1cd5bb4edd6b7e4bc3cb330f75a0e753e6

Contents?: true

Size: 901 Bytes

Versions: 14

Compression:

Stored size: 901 Bytes

Contents

name: build image
on:
  push:
    branches:
      - master
      - feature/*
    
jobs:
  build:
    name: Build + Publish Container Image
    runs-on: ubuntu-latest

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

    - name: Inject slug/short variables
      uses: rlespinasse/github-slug-action@v3.x  

    - 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:snapshot_${{env.GITHUB_REF_SLUG}}

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
cfn-guardian-0.10.1 .github/workflows/push.yml
cfn-guardian-0.10.0 .github/workflows/push.yml
cfn-guardian-0.9.2 .github/workflows/push.yml
cfn-guardian-0.9.1 .github/workflows/push.yml
cfn-guardian-0.9.0 .github/workflows/push.yml
cfn-guardian-0.8.6 .github/workflows/push.yml
cfn-guardian-0.8.5 .github/workflows/push.yml
cfn-guardian-0.8.4 .github/workflows/push.yml
cfn-guardian-0.8.3 .github/workflows/push.yml
cfn-guardian-0.8.2 .github/workflows/push.yml
cfn-guardian-0.8.1 .github/workflows/push.yml
cfn-guardian-0.8.0 .github/workflows/push.yml
cfn-guardian-0.7.16 .github/workflows/push.yml
cfn-guardian-0.7.15 .github/workflows/push.yml