-
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.
* Well let's try this ! (#16) * typo into release pipeline * Feat/add username in header (#14) * feat: add user in redux * feat: update app and topbar components * feat: avoid user to autolike his comment (#15) * feat: add user in redux * feat: update app and topbar components * feat: avoid user to autolike his comment Co-authored-by: Yann RENAUDIN <4748419+emyann@users.noreply.github.com>
- Loading branch information
1 parent
f7ea836
commit 2fd5f2c
Showing
21 changed files
with
170 additions
and
128 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 @@ | ||
on: | ||
push: | ||
branches: | ||
- dev | ||
jobs: | ||
build: | ||
name: Releasing | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build Docker image | ||
env: # Or as an environment variable | ||
FTH_REGISTRY_PASSWORD: ${{ secrets.FTH_REGISTRY_PASSWORD }} | ||
FTH_REGISTRY_USERNAME: ${{ secrets.FTH_REGISTRY_USERNAME }} | ||
run: | | ||
make build-images | ||
make push-images | ||
- name: Azure Login | ||
uses: Azure/login@v1 | ||
with: | ||
creds: ${{ secrets.AZURE_CREDENTIALS }} | ||
- name: Helm tool installer | ||
uses: Azure/setup-helm@v1 | ||
- name: Kubectl tool installer | ||
uses: Azure/setup-kubectl@v1 | ||
- name: Get Kubeconfig | ||
env: # Or as an environment variable | ||
AKS_CLUSTER_NAME: ${{ secrets.AKS_CLUSTER_NAME }} | ||
AKS_CLUSTER_RG_NAME: ${{ secrets.AKS_CLUSTER_RG_NAME }} | ||
run: | | ||
az aks get-credentials -n $AKS_CLUSTER_NAME -g $AKS_CLUSTER_RG_NAME | ||
kubectl get pods --all-namespaces | ||
- name: Update Charts | ||
run: | | ||
make helm-upgrade-dev-publisher | ||
make helm-upgrade-dev-worker | ||
make helm-upgrade-dev-client | ||
kubectl get pods --all-namespaces | ||
kubectl apply -f charts/ingress/ingress.yaml |
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 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
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 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
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.