slack-app-v4.17.0 #5
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/action-docker-layer-caching@v0.0.11 | |
continue-on-error: true | |
- name: push to dockerhub | |
uses: fylein/docker-release-action@master | |
env: | |
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }} | |
IMAGE_NAME: fyle_slack-app | |
- 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: ${{ vars.PROD_DEPLOY_REPO }} | |
ref: master | |
path: ${{ vars.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 ${{ vars.PROD_DEPLOY_REPO }}/${{ vars.PROD_US1_DEPLOY_DIR }}/integrations | |
kustomize edit set image docker.io/${{ secrets.DOCKERHUB_USERNAME }}/fyle_slack-app=docker.io/${{ secrets.DOCKERHUB_USERNAME }}/fyle_slack-app:$NEW_TAG | |
- name: Commit and push changes | |
run: | | |
cd ${{ vars.PROD_DEPLOY_REPO }}/ | |
git config --global user.email "integrations@fylehq.com" | |
git config --global user.name "GitHub Actions" | |
git add . | |
git commit -m "Update slack-app image tag" | |
git remote set-url origin https://x-access-token:${{ secrets.DEPLOY_GIT_ACCESS_TOKEN }}@github.com/${{ vars.PROD_DEPLOY_REPO }} | |
git push origin master |