From 646d8724d036aa02b4957af004edcb233f4a187f Mon Sep 17 00:00:00 2001 From: Cyber MacGeddon Date: Mon, 6 Jan 2025 21:31:06 +0000 Subject: [PATCH] Comment out some stuff --- .github/workflows/release.yaml | 38 ++++++++++++++++++++-------------- 1 file changed, 22 insertions(+), 16 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4b594118..d7f43cb6 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -52,11 +52,11 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Log in to Docker Hub - uses: docker/login-action@v3 - with: - username: ${{ vars.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_SECRET }} + - name: Docker Hub token + run: echo ${{ secrets.DOCKER_SECRET }} > docker-token.txt + + - name: Authenticate with Docker hub + run: make docker-hub-login - name: Get version id: version @@ -77,18 +77,24 @@ jobs: type=semver,pattern={{major}}.{{minor}} type=sha - - name: Build and push Docker image - id: push - uses: docker/build-push-action@v6 - with: - context: . - file: ./Containerfile - push: true - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} + - run: echo ${{ steps.meta.outputs.labels }} + - run: echo ${{ steps.meta.outputs.tags }} - - name: Create deploy bundle - run: templates/generate-all deploy.zip ${{ steps.version.outputs.VERSION }} + # - name: Build containers + # run: make container VERSION=${{ steps.version.outputs.VERSION }} + + # - name: Push containers + # run: make push VERSION=${{ steps.version.outputs.VERSION }} + + # - name: Build and push Docker image + # id: push + # uses: docker/build-push-action@v6 + # with: + # context: . + # file: ./Containerfile + # push: true + # tags: ${{ steps.meta.outputs.tags }} + # labels: ${{ steps.meta.outputs.labels }} # release-bundle: