From 798f8134f4a5da64adc9b3a540783ee16b115ab0 Mon Sep 17 00:00:00 2001 From: astravexton Date: Thu, 19 Jun 2025 10:54:01 +0100 Subject: [PATCH] add CI build --- .forgejo/workflows/build.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .forgejo/workflows/build.yml diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml new file mode 100644 index 0000000..35e0797 --- /dev/null +++ b/.forgejo/workflows/build.yml @@ -0,0 +1,22 @@ +on: + push: + branches: + - main +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v4 + - name: Login to Docker Hub + uses: https://github.com/docker/login-action@v3 + with: + registry: git.zio.sh + username: ${{ secrets.REPO_USER }} + password: ${{ secrets.REPO_PASS }} + - name: Set up Docker Build Push Action + uses: https://github.com/docker/build-push-action@v2 + with: + tags: git.zio.sh/astra/bsky2tg:latest + push: true + load: false \ No newline at end of file