Skip to content

Fix some stuff, support instagram, add publish flow #1

Fix some stuff, support instagram, add publish flow

Fix some stuff, support instagram, add publish flow #1

Workflow file for this run

name: publish
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
env:
REGISTRY: ghcr.io
jobs:
publish:
name: Publish Shortique
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/[email protected]
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
push: true
tags: ghcr.io/hedlx/shortique:latest,ghcr.io/hedlx/shortique:${{ github.ref_name }}