-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/collapse-groups
- Loading branch information
Showing
3 changed files
with
73 additions
and
1 deletion.
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,49 @@ | ||
name: Build Devcontainer image | ||
on: | ||
workflow_dispatch: | ||
# no content, allows manual triggering | ||
|
||
schedule: | ||
# 5:30 pm every Sunday (UTC) | ||
# to pick up any important bug fixes etc in base image | ||
- cron: '30 17 * * 0' | ||
|
||
push: | ||
# run when changes pushed to master if any devcontainer files changed | ||
branches: | ||
- master | ||
paths: | ||
- .devcontainer/** | ||
|
||
jobs: | ||
# Based on: https://docs.github.com/en/actions/guides/publishing-docker-images#publishing-images-to-github-packages | ||
build-devcontainer-image: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
packages: write | ||
contents: read | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: 'true' | ||
|
||
- name: Log in to GitHub Docker Registry | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: docker.pkg.github.com | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN } | ||
|
||
- name: Build & push Devcontainer image | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: .devcontainer | ||
push: true | ||
# Build an image usable as cache-from, per: https://docs.docker.com/engine/reference/commandline/build/#specifying-external-cache-sources | ||
build-args: BUILDKIT_INLINE_CACHE=1 | ||
tags: | | ||
docker.pkg.github.com/${{ github.repository }}/devcontainer:latest | ||
docker.pkg.github.com/${{ github.repository }}/devcontainer:${{ github.sha }} |
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 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