Skip to content
This repository has been archived by the owner on Dec 24, 2024. It is now read-only.

Update tsconfig.json #12

Update tsconfig.json

Update tsconfig.json #12

Workflow file for this run

name: Deploy
on:
push:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-20.04
environment: Production
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Build and push app Docker image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/eurus:latest
build-args: |
BOT_TOKEN=${{ vars.BOT_TOKEN }}