Comment out some stuff

This commit is contained in:
Cyber MacGeddon 2025-01-06 21:31:06 +00:00
parent b08a6b9fa6
commit 646d8724d0

View file

@ -52,11 +52,11 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Log in to Docker Hub - name: Docker Hub token
uses: docker/login-action@v3 run: echo ${{ secrets.DOCKER_SECRET }} > docker-token.txt
with:
username: ${{ vars.DOCKER_USERNAME }} - name: Authenticate with Docker hub
password: ${{ secrets.DOCKER_SECRET }} run: make docker-hub-login
- name: Get version - name: Get version
id: version id: version
@ -77,18 +77,24 @@ jobs:
type=semver,pattern={{major}}.{{minor}} type=semver,pattern={{major}}.{{minor}}
type=sha type=sha
- name: Build and push Docker image - run: echo ${{ steps.meta.outputs.labels }}
id: push - run: echo ${{ steps.meta.outputs.tags }}
uses: docker/build-push-action@v6
with:
context: .
file: ./Containerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Create deploy bundle # - name: Build containers
run: templates/generate-all deploy.zip ${{ steps.version.outputs.VERSION }} # 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: # release-bundle: