Skip to content

Bump for new version. #20

Bump for new version.

Bump for new version. #20

Workflow file for this run

name: Jammy
on:
workflow_dispatch: {}
push:
tags:
- release-*
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Download the Ubuntu image
run: |
wget -q -O $GITHUB_WORKSPACE/containers/ubuntu-jammy/jammy-server-cloudimg-amd64-root.tar.xz https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64-root.tar.xz
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/mike-matera/cloud-server-ubuntu-jammy
tags: |
type=ref,event=branch
type=ref,event=tag
type=sha
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: ./containers/ubuntu-jammy
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}