-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated commit from vegaprotocol/terraform/github
- Loading branch information
vega-ci-bot
committed
Jul 27, 2022
1 parent
f5ad2ff
commit 7a70684
Showing
1 changed file
with
11 additions
and
11 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 |
---|---|---|
@@ -1,20 +1,20 @@ | ||
# FILE IS AUTOMATICALLY MANAGED BY github.com/vegaprotocol/terraform//github | ||
name: "Continous Deployment Workflow" | ||
"on": | ||
|
||
push: | ||
tags: | ||
- v* | ||
|
||
jobs: | ||
# integration: | ||
# uses: ./.github/workflows/continous-integration.yml | ||
integration: | ||
uses: ./.github/workflows/continous-integration.yml | ||
delivery: | ||
# needs: integration | ||
needs: integration | ||
uses: ./.github/workflows/continous-delivery.yml | ||
secrets: | ||
USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | ||
PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
CONFIG: ${{ secrets.DOCKERHUB_CONFIG }} | ||
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | ||
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} | ||
update-manifest-repo: | ||
needs: delivery | ||
runs-on: ubuntu-latest | ||
|
@@ -26,15 +26,15 @@ jobs: | |
with: | ||
ssh-private-key: ${{ secrets.VEGA_CI_SSH_KEY }} | ||
- run: | | ||
version=$(git describe --tags --abbrev=0) | ||
git config --global user.name 'vega-ci-bot' | ||
git config --global user.email '[email protected]' | ||
git clone [email protected]:vegaprotocol/k8s.git | ||
echo -n "$version" > k8s/charts/apps/liqbot/stagnet2/VERSION | ||
( | ||
cd k8s | ||
git add -A | ||
|