Skip to content

Updated tinyTasks to auto create again (Release v0.5.2) #14

Updated tinyTasks to auto create again (Release v0.5.2)

Updated tinyTasks to auto create again (Release v0.5.2) #14

Workflow file for this run

name: Publish GHCR Image
on:
push:
tags:
- "v*"
release:
types: [published]
workflow_dispatch:
permissions:
contents: read
packages: write
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/tinymem:latest
ghcr.io/${{ github.repository_owner }}/tinymem:${{ github.ref_name }}