-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'a8081screenrpa/main'
- Loading branch information
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.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -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 |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.