Skip to content

Commit

Permalink
Merge remote-tracking branch 'a8081screenrpa/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
a8081 committed Sep 9, 2024
2 parents b011b3e + 95824e6 commit c33d103
Show file tree
Hide file tree
Showing 3,271 changed files with 363,923 additions and 3,560 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
4 changes: 0 additions & 4 deletions .env.sample

This file was deleted.

28 changes: 20 additions & 8 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,31 @@
name: Build and publish

on:
on:
workflow_dispatch:
push:
branches:
- "main" # Running this workflow only for master branch
- "main" # Running this workflow only for main branch

jobs:
build-and-publish-latest:
runs-on: self-hosted

steps:
- uses: actions/checkout@v2.5.0 # Checking out the repo
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build and publish "latest" Docker image
uses: VaultVulp/gp-docker-action@1.5.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }} # Provide GITHUB_TOKEN to login into the GitHub Packages
image-name: rim # Provide only Docker image name, tag will be automatically set to latest
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image
id: push
uses: docker/build-push-action@v6
with:
context: .
push: true
file: docker/nvidia.Dockerfile
tags: ghcr.io/a8081/screenrpa:latest
43 changes: 39 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,11 @@ __pycache__/
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
Expand Down Expand Up @@ -140,8 +137,10 @@ dmypy.json
# Custom Folders
CSV_exit
resources/
metadata/
mockups
privatefiles/
checkpoints/

# SQLite Database
loggenerator.db
Expand All @@ -153,4 +152,40 @@ outputs/
staticfiles/
landing/

dump.rdb
dump.rdb

# database & logs
*.db
*.sqlite3
*.log

# other
.DS_Store

# javascript
package-lock.json

# database backup
backup.json

media/
staticfiles/*
!staticfiles/.gitkeep
.vscode/symbols.json

YOLO_Datasets/

apps/static/assets/node_modules
apps/static/assets/yarn.lock
apps/static/assets/.temp

#checkpoints
apps/featureextraction/SOM/checkpoints/

#notebooks
apps/processdiscovery/notebooks/
apps/notebooks
apps/decisiondiscovery/notebooks/*.csv
apps/decisiondiscovery/notebooks/*.txt
apps/decisiondiscovery/notebooks/*.json
apps/decisiondiscovery/notebooks/test.ipynb
18 changes: 0 additions & 18 deletions Dockerfile

This file was deleted.

Loading

0 comments on commit c33d103

Please sign in to comment.