make it make sense now
All checks were successful
Build and Deploy Docker Image / build (push) Successful in 53s

close dialog after someone clicks subscribe

fix:

adjust v

adjust revision

adjustments

adjustments

adjusting

fix

testing

testing

testing

testing

testing

tag

may work now

testing

testing

testing

testing

fix: owner

feat: favicon and title fix
This commit is contained in:
Smigz 2024-10-21 21:16:18 -04:00 committed by mike
parent 8c06947ebe
commit 88d1556f78
4 changed files with 123 additions and 109 deletions

View file

@ -7,24 +7,26 @@ on:
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-docker
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2
- name: Log in to Gitea Container Registry
run: echo "${{ secrets.GITEA_PASSWORD }}" | docker login ${{ secrets.GITEA_REGISTRY }} -u ${{ secrets.GITEA_USERNAME }} --password-stdin
uses: docker/login-action@v3
with:
password: ${{ secrets.PASSWORD }}
username: ${{ secrets.USERNAME }}
registry: git.thecodedom.com
- name: Build and push Docker image
uses: docker/build-push-action@v2
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ${{ secrets.GITEA_REGISTRY }}/smig/dotechbro-website:latest
tags: git.thecodedom.com/dotechbro/dotechbro-website:latest
- name: Log out from Gitea Container Registry
run: docker logout ${{ secrets.GITEA_REGISTRY }}