From 75152dc33bd8211bf5c73801b965fee65eb44b46 Mon Sep 17 00:00:00 2001 From: Evan Richardson Date: Thu, 7 Mar 2024 06:04:07 +0000 Subject: [PATCH] Delete .gitea/workflows/publish.yaml --- .gitea/workflows/publish.yaml | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .gitea/workflows/publish.yaml diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml deleted file mode 100644 index 41acece..0000000 --- a/.gitea/workflows/publish.yaml +++ /dev/null @@ -1,35 +0,0 @@ -name: Build and publish Image -run-name: ${{ gitea.actor }} is building py-eagle-mqtt image -on: - push: - branches: - - '*' # matches every branch that doesn't contain a '/' - - '*/*' # matches every branch containing a single '/' - - '**' # matches every branch - - '!master' # excludes master - -jobs: - build-and-push: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Logout of registry - run: docker logout harbor.evanshome.io - - - name: Login to Harbor - uses: docker/login-action@v3 - with: - registry: harbor.evanshome.io - username: ${{ secrets.EVAN_USERNAME }} - password: ${{ secrets.EVAN_PASSWORD }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: ./Docker/ - push: true - tags: 'harbor.evanshome.io/library/py-eagle-mqtt:dev' - \ No newline at end of file