-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9d890cd
commit fc1c3dc
Showing
4 changed files
with
34 additions
and
133 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,30 @@ | ||
name: Build development containers | ||
on: | ||
push: | ||
branches: | ||
- develop | ||
- refactor-actions # remove this before merging! | ||
|
||
release: | ||
types: | ||
- prereleased | ||
|
||
permissions: | ||
checks: write | ||
|
||
jobs: | ||
lint_and_test: | ||
name: Lint + Test | ||
uses: ./.github/workflows/lint-and-test.yml | ||
|
||
build_and_push_development_containers: | ||
name: Build and push dev containers | ||
uses: ./.github/workflows/build-containers.yml | ||
with: | ||
registry: ${{ secrets.CONTAINER_REGISTRY }} | ||
username: ${{ secrets.CONTAINER_REGISTRY_USERNAME }} | ||
password: ${{ secrets.CONTAINER_REGISTRY_TOKEN }} | ||
tag: ${{ github.event.release.tag_name || github.ref_name }} | ||
environments: '["stage"]' | ||
services: '["rails","sidekiq","fcrepo","solr","fits_servlet"]' | ||
|
This file was deleted.
Oops, something went wrong.
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