-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch from Travis CI to GitHub Actions
- Loading branch information
1 parent
61874c2
commit 9f4d680
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Docker Build | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
env: | ||
DOCKER_BUILDKIT: 1 | ||
|
||
jobs: | ||
build: | ||
name: build Docker image for Ruby 2.7.6 | ||
runs-on: ubuntu-latest | ||
env: | ||
RUBY_IMAGE_TAG: 2.7.6 | ||
steps: | ||
- name: docker build | ||
run: | | ||
pwd | ||
ls | ||
bash build.sh |