Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wiki-js
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
wiki-js
Commits
8f573ffd
Unverified
Commit
8f573ffd
authored
Feb 02, 2019
by
Nicolas Giard
Committed by
GitHub
Feb 02, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
misc: github actions workflow (wip)
parent
38411cbf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
main.workflow
.github/main.workflow
+21
-0
No files found.
.github/main.workflow
0 → 100644
View file @
8f573ffd
workflow "Docker build" {
on = "push"
resolves = ["Build Docker Image"]
}
action "Filter branch dev" {
uses = "actions/bin/filter@c6471707d308175c57dfe91963406ef205837dbd"
args = "branch dev"
}
action "Docker Registry" {
uses = "actions/docker/login@c08a5fc9e0286844156fefff2c141072048141f6"
needs = ["Filter branch dev"]
secrets = ["DOCKER_USERNAME", "DOCKER_PASSWORD"]
}
action "Build Docker Image" {
uses = "actions/docker/cli@c08a5fc9e0286844156fefff2c141072048141f6"
needs = ["Docker Registry"]
runs = "docker build -f ./dev/build/Dockerfile -t requarks/wiki:dev ."
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment