Skip to content

Commit

Permalink
🔥 Delete unused issue templates and funding configuration, add Docker…
Browse files Browse the repository at this point in the history
… image deployment workflow, and implement HTTP Basic Authentication middleware.
  • Loading branch information
pAkalpa committed Mar 7, 2024
1 parent 2f59e12 commit e99e375
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 256 deletions.
13 changes: 0 additions & 13 deletions .github/FUNDING.yml

This file was deleted.

32 changes: 0 additions & 32 deletions .github/ISSUE_TEMPLATE/bug_report.yml

This file was deleted.

132 changes: 0 additions & 132 deletions .github/ISSUE_TEMPLATE/maintainers-release.md

This file was deleted.

18 changes: 0 additions & 18 deletions .github/ISSUE_TEMPLATE/roadmap-request.md

This file was deleted.

61 changes: 0 additions & 61 deletions .github/workflows/docker-image.yml

This file was deleted.

33 changes: 33 additions & 0 deletions .github/workflows/dockerhub-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Create and publish Docker images to Dockerhub

on:
push:
tags:
- 'v*'

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]

- name: Set up QEMU
uses: docker/[email protected]

- name: Set up Docker Buildx
uses: docker/[email protected]

- name: Login to DockerHub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: pasinduakalpa/big-agi:latest
File renamed without changes.

0 comments on commit e99e375

Please sign in to comment.