From 96a6ebf76c58bfcd9e6523badea53f7d841189f0 Mon Sep 17 00:00:00 2001 From: Tom Andrade Date: Tue, 5 Sep 2023 11:05:10 +0200 Subject: [PATCH] feat: remove actions config --- .gitea/workflows/build-and-push.yaml | 32 ---------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .gitea/workflows/build-and-push.yaml diff --git a/.gitea/workflows/build-and-push.yaml b/.gitea/workflows/build-and-push.yaml deleted file mode 100644 index 505eed3..0000000 --- a/.gitea/workflows/build-and-push.yaml +++ /dev/null @@ -1,32 +0,0 @@ -name: Build Image using Dockerfile -on: - push: - branches: - - main - -jobs: - build: - name: Build image - runs-on: ubuntu-latest - steps: - - name: Get current date - id: date - run: echo "::set-output name=date::$(date '+%Y-%m-%dT%TZ%z')" - - uses: actions/checkout@v3 - - uses: docker/metadata-action@v3 - id: metadata - with: - images: git.thebarrens.nu/${{ gitea.repository}} - - uses: docker/login-action@v2 - with: - registry: git.thebarrens.nu - username: ${{ gitea.actor }} - password: ${{ secrets.GITEA_TOKEN }} - - uses: int128/kaniko-action@v1 - with: - push: true - tags: latest - labels: ${{ steps.metadata.outputs.labels }} - cache: false - build-args: | - BUILD_DATE: ${{ steps.date.outputs.date }} \ No newline at end of file