This repository has been archived by the owner on Jan 1, 2025. It is now read-only.
forked from instructure/canvas-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from talview/CI-CD
Canvas-LMS || Added CI
- Loading branch information
Showing
1 changed file
with
48 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,48 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
- master | ||
- release/* | ||
tags: | ||
- v* | ||
pull_request: | ||
branches: | ||
- develop | ||
- master | ||
- release/* | ||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build and push Docker images | ||
uses: docker/[email protected] | ||
with: | ||
# Username used to log in to a Docker registry. If not set then no login will occur | ||
username: ${{ github.actor }} | ||
# Password or personal access token used to log in to a Docker registry. If not set then no login will occur | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
# Server address of Docker registry. If not set then will default to Docker Hub | ||
registry: ghcr.io | ||
# Docker repository to tag the image with | ||
repository: talview/canvas-lms/canvas_lms | ||
# Automatically tags the built image with the git reference as per the readme | ||
tag_with_ref: true | ||
tag_with_sha: true | ||
# Path to the build context | ||
path: . | ||
# Path to the Dockerfile (Default is '{path}/Dockerfile') | ||
dockerfile: Dockerfile | ||
# Always attempt to pull a newer version of the image | ||
always_pull: true | ||
# Comma-delimited list of images to consider as cache sources | ||
cache_froms: talview/canvas-lms/canvas_lms:develop,talview/canvas-lms/canvas_lms:latest | ||
# Adds labels with git repository information to the built image | ||
add_git_labels: true | ||
# Whether to push the image | ||
push: true |