Skip to content

CI messing

CI messing #13

name: Image Publish
on:
push:
branches:
- '*'
release:
types: [published]
env:
IMAGE_NAME: build
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the container image
run: buildah build --file Dockerfile --tag image --layers=false --squash
- name: Log into registry
#run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
run: echo "${{ secrets.GITHUB_TOKEN }} | podman login --username ${{ github.actor }} --password-stdin ghcr.io
# - name: Push image
# run: |
# # Image ID must be lowercase
# IMAGE_ID=docker.pkg.github.com/$(echo "${{ github.repository }}" | tr '[:upper:]' '[:lower:]')/$IMAGE_NAME
# # Strip git ref prefix from version
# VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# echo IMAGE_ID=$IMAGE_ID
# echo VERSION=$VERSION
# docker tag image $IMAGE_ID:$VERSION
# docker push $IMAGE_ID:$VERSION