Skip to content

[add] ci

[add] ci #1

Workflow file for this run

name: SinkPackage
on:
push:
branches:
- main
tags:
- '*'
env:
REGISTRY: ghcr.io
IMAGE_NAME: tuancamtbtx/airflow
jobs:
build-and-push-package:
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/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.DOCKER_GITHUB_TOKEN }}