Skip to content

Commit

Permalink
Comment out some stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
cybermaggedon committed Jan 6, 2025
1 parent b08a6b9 commit 646d872
Showing 1 changed file with 23 additions and 17 deletions.
40 changes: 23 additions & 17 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}

- name: Create deploy bundle
run: templates/generate-all deploy.zip ${{ steps.version.outputs.VERSION }}
- run: echo ${{ steps.meta.outputs.labels }}
- run: echo ${{ steps.meta.outputs.tags }}

# - 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:

Expand Down

0 comments on commit 646d872

Please sign in to comment.