Skip to content

Commit

Permalink
изменил название репозитория в docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
trooper2003 committed Jan 11, 2024
1 parent c5a51b0 commit ffe34fb
Show file tree
Hide file tree
Showing 4 changed files with 112 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
venv
.github
result.png
.env
checklist.md
README.md
37 changes: 37 additions & 0 deletions .github/workflows/dockerize.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Deploy deepRunnerJs
on:
push:
branches: [ main ]
workflow_dispatch:
defaults:
run:
working-directory: ./
jobs:
dockerize:
name: dockerize
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build
run: echo "build"
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v3
with:
images: deepf/telegram-bot-listener
- name: build docker image and push
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}

10 changes: 10 additions & 0 deletions .github/workflows/npm-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Npm Build

on:
pull_request:
types: [opened, reopened, edited, synchronize]
workflow_dispatch:

jobs:
main:
uses: deep-foundation/workflows/.github/workflows/npm-build.yml@main
59 changes: 59 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ffe34fb

Please sign in to comment.