-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 2.0.0 draft1 * remove pycache * clean assets dir * ignore vscode settings * getting ready to deploy 1.4.0 * testing production build * ready to deploy 1.4.0 * updated codecov config * add a test for disabled feature flag * upgrade docker in ci * run better version command * try push 1.4.0 like this * update build manifest * just use build manifest * try with blank copy * ready for 1.4.1
- Loading branch information
Showing
4 changed files
with
54 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,54 +24,14 @@ jobs: | |
uses: CultureHQ/actions-yarn@master | ||
with: | ||
args: --cwd services/bot install | ||
- name: Build and publish qutex_bot | ||
uses: VaultVulp/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
image-name: qutex_bot | ||
extract-git-tag: true | ||
build-context: ./services/bot | ||
dockerfile: ./services/bot/Dockerfile | ||
- name: Build and publish qutex_nginx | ||
uses: VaultVulp/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
image-name: qutex_nginx | ||
extract-git-tag: true | ||
build-context: ./services/nginx | ||
dockerfile: ./services/nginx/Dockerfile | ||
- name: Build and publish qutex_ui | ||
uses: VaultVulp/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
image-name: qutex_ui | ||
extract-git-tag: true | ||
build-context: ./services/ui | ||
dockerfile: ./services/ui/Dockerfile | ||
- name: Build and publish qutex_projects | ||
uses: VaultVulp/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
image-name: qutex_projects | ||
extract-git-tag: true | ||
build-context: . | ||
dockerfile: ./services/_api_service_template/Dockerfile | ||
custom-args: --build-arg SERVICE_PREFIX=projects | ||
- name: Build and publish qutex_users | ||
uses: VaultVulp/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
image-name: qutex_users | ||
extract-git-tag: true | ||
build-context: . | ||
dockerfile: ./services/_api_service_template/Dockerfile | ||
custom-args: --build-arg SERVICE_PREFIX=users | ||
- name: Build and publish qutex_auth | ||
uses: VaultVulp/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
image-name: qutex_auth | ||
extract-git-tag: true | ||
build-context: . | ||
dockerfile: ./services/_api_service_template/Dockerfile | ||
custom-args: --build-arg SERVICE_PREFIX=auth | ||
- name: Build & push containers | ||
run: | | ||
# Setup Build | ||
docker login -u publisher -p ${DOCKER_TOKEN} ghcr.io | ||
QUTEX_VERSION=$(echo ${GITHUB_REF} | sed -e "s/refs\/tags\///g") | ||
# Build all containers | ||
docker compose -f docker-compose.build.yml build | ||
docker compose -f docker-compose.build.yml push | ||
env: | ||
DOCKER_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
version: '3.9' | ||
services: | ||
nginx: | ||
image: ghcr.io/amthorn/qutex/qutex_nginx:${QUTEX_VERSION:-latest} | ||
build: | ||
context: services/nginx | ||
bot: | ||
image: ghcr.io/amthorn/qutex/qutex_bot:${QUTEX_VERSION:-latest} | ||
build: | ||
context: ./services/bot | ||
ui: | ||
image: ghcr.io/amthorn/qutex/qutex_ui:${QUTEX_VERSION:-latest} | ||
build: | ||
context: services/ui/ | ||
projects: | ||
image: ghcr.io/amthorn/qutex/qutex_projects:${QUTEX_VERSION:-latest} | ||
build: | ||
context: . | ||
dockerfile: services/_api_service_template/Dockerfile | ||
args: | ||
SERVICE_PREFIX: projects | ||
users: | ||
image: ghcr.io/amthorn/qutex/qutex_users:${QUTEX_VERSION:-latest} | ||
build: | ||
context: . | ||
dockerfile: services/_api_service_template/Dockerfile | ||
args: | ||
SERVICE_PREFIX: users | ||
auth: | ||
image: ghcr.io/amthorn/qutex/qutex_auth:${QUTEX_VERSION:-latest} | ||
build: | ||
context: . | ||
dockerfile: services/_api_service_template/Dockerfile | ||
args: | ||
SERVICE_PREFIX: auth |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters