FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Rcpp/.github/workflows/docker.yaml at master · RcppCore/Rcpp · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
RcppCore
/
Rcpp
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
218
Star
799
Code
Issues
4
Pull requests
1
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
Rcpp
/
.github
/
workflows
/
docker.yaml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
91 lines (72 loc) · 1.81 KB
Breadcrumbs
Rcpp
/
.github
/
workflows
/
docker.yaml
Copy path
File metadata and controls
91 lines (72 loc) · 1.81 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name
:
docker
on
:
push
:
branches
:
-
master
workflow_dispatch
:
schedule
:
-
cron
:
"
32 1 * * 6
"
jobs
:
docker-ci
:
runs-on
:
ubuntu-latest
name
:
${{ matrix.tag }}
strategy
:
fail-fast
:
false
matrix
:
tag
:
[ci, ci-dev]
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v6
-
name
:
Set up Docker Buildx
uses
:
docker/setup-buildx-action@v4
-
name
:
Login to DockerHub
uses
:
docker/login-action@v4
with
:
username
:
${{ secrets.DOCKER_USERNAME }}
password
:
${{ secrets.DOCKER_PASSWORD }}
-
name
:
Build and push
uses
:
docker/build-push-action@v7
with
:
push
:
true
context
:
docker/${{ matrix.tag }}
tags
:
rcpp/${{ matrix.tag }}
docker-run
:
runs-on
:
ubuntu-latest
name
:
run
needs
:
docker-ci
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v6
-
name
:
Set up Docker Buildx
uses
:
docker/setup-buildx-action@v4
-
name
:
Login to DockerHub
uses
:
docker/login-action@v4
with
:
username
:
${{ secrets.DOCKER_USERNAME }}
password
:
${{ secrets.DOCKER_PASSWORD }}
-
name
:
Build and push
uses
:
docker/build-push-action@v7
with
:
push
:
true
context
:
docker/run
tags
:
rcpp/run
docker-plus
:
runs-on
:
ubuntu-latest
name
:
plus
needs
:
docker-run
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v6
-
name
:
Set up Docker Buildx
uses
:
docker/setup-buildx-action@v4
-
name
:
Login to DockerHub
uses
:
docker/login-action@v4
with
:
username
:
${{ secrets.DOCKER_USERNAME }}
password
:
${{ secrets.DOCKER_PASSWORD }}
-
name
:
Build and push
uses
:
docker/build-push-action@v7
with
:
push
:
true
context
:
docker/plus
tags
:
rcpp/plus
Back
|
FazBrowse Home
|
New Git URL