sudo #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: Free disk space | |
run: | | |
df -H | |
sudo apt-get clean | |
df -H | |
- 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 |