This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
Fix Preview Text in Select Field #37
Workflow file for this run
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
name: Deploy to Production | |
on: | |
release: | |
types: [created] | |
jobs: | |
production_deploy: | |
runs-on: ubuntu-latest | |
environment: Production | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: satackey/[email protected] | |
continue-on-error: true | |
- name: push to dockerhub | |
uses: fylein/docker-release-action@master | |
env: | |
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }} | |
IMAGE_NAME: fyle_qbo-app-2 | |
- name: Install kustomize | |
run: | | |
curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash | |
sudo mv kustomize /usr/local/bin/ | |
- name: Clone another repository | |
uses: actions/checkout@v2 | |
with: | |
repository: ${{ secrets.PROD_DEPLOY_REPO }} | |
ref: master | |
path: ${{ secrets.PROD_DEPLOY_REPO }} | |
persist-credentials: false | |
token: ${{ secrets.DEPLOY_GIT_ACCESS_TOKEN }} | |
- name: Update Image Tag | |
run: | | |
NEW_TAG="v$(git rev-parse --short HEAD)" | |
cd ${{ secrets.PROD_DEPLOY_REPO }}/${{ secrets.EKS_CLUSTER_NAME }}/integrations | |
kustomize edit set image docker.io/${{ secrets.DOCKERHUB_USERNAME }}/fyle_qbo-app-2=docker.io/${{ secrets.DOCKERHUB_USERNAME }}/fyle_qbo-app-2:$NEW_TAG | |
- name: Commit and push changes | |
run: | | |
cd ${{ secrets.PROD_DEPLOY_REPO }}/ | |
git config --global user.email "[email protected]" | |
git config --global user.name "GitHub Actions" | |
git add . | |
git commit -m "Update image tag" | |
git remote set-url origin https://x-access-token:${{ secrets.DEPLOY_GIT_ACCESS_TOKEN }}@github.com/${{ secrets.PROD_DEPLOY_REPO }} | |
git pull origin master | |
git push origin master |