Skip to content

Commit

Permalink
[add] ci
Browse files Browse the repository at this point in the history
  • Loading branch information
tuancamtbtx committed Dec 3, 2023
1 parent 15dd414 commit 291b0a0
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/sink_package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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 }}

0 comments on commit 291b0a0

Please sign in to comment.