-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* App: Support new subscriptions module (#220) * app: support new subscriptions module * shared: add fs import on artifacts * shared: fix artifacts paths generation * chore: changed URLs from *.eth.aragon.network to *.backend.aragon.org * removing heartbeat (#223) * removing heartbeat * [cicd] updates github container registry removes deployment step Co-authored-by: Mathias Scherer <[email protected]> * [cicd] adds workflow for rinkeby image (#224) Co-authored-by: Facu Spagnuolo <[email protected]> Co-authored-by: Martynas Prokopas <[email protected]> Co-authored-by: Ramon Canales <[email protected]>
- Loading branch information
1 parent
3a9b0e6
commit b8f57c3
Showing
20 changed files
with
135 additions
and
304 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
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,39 @@ | ||
name: Testnet CI/CD | ||
on: | ||
push: | ||
branches: | ||
# Executes on any non master commit, but release and deploy steps only run on development | ||
# This is useful to see if tests are passing during PR review | ||
- '**' | ||
- '!master' | ||
paths-ignore: | ||
- 'monitoring/**' | ||
- 'emails/**' | ||
env: | ||
# This is a base repository and we use ${GITHUB_SHA} to set the version of the container | ||
REPO: docker.pkg.github.com/aragonone/court-backend/rinkeby | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: docker login docker.pkg.github.com -u $GITHUB_ACTOR -p ${{secrets.GITHUB_TOKEN}} | ||
- run: .github/scripts/docker-build.sh $REPO ${GITHUB_SHA} | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: docker login docker.pkg.github.com -u $GITHUB_ACTOR -p ${{secrets.GITHUB_TOKEN}} | ||
- run: .github/scripts/test/run.sh $REPO:${GITHUB_SHA} | ||
|
||
release: | ||
if: github.ref == 'refs/heads/development' | ||
runs-on: ubuntu-latest | ||
needs: test | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: docker login docker.pkg.github.com -u $GITHUB_ACTOR -p ${{secrets.GITHUB_TOKEN}} | ||
- run: .github/scripts/docker-release.sh $REPO:${GITHUB_SHA} $REPO:latest |
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
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
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
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
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
Oops, something went wrong.