Skip to content

Deploy to new dev by using terraform #3770

Deploy to new dev by using terraform

Deploy to new dev by using terraform #3770

Workflow file for this run

name: CI
on:
push:
branches: [master]
tags: ['v*']
pull_request:
branches: [master]
schedule:
- cron: 0 4 * * *
jobs:
test:
name: All checks are passed
uses: ./.github/workflows/test.yaml
approve:
name: Approve bot PR
runs-on: ubuntu-latest
if: endsWith(github.actor, '[bot]')
needs: test
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: metadata
id: metadata
if: github.actor == 'dependabot[bot]'
uses: dependabot/fetch-metadata@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Enable auto-merge for bot PRs
run: gh pr merge --auto --squash --delete-branch "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
release:
name: Create release
needs: test
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
uses: neuro-inc/reuse/.github/workflows/release-service.yaml@v24.9.0
with:
image: platform-reports
helm_charts: platform-reports
deploy_dev:
name: Deploy on dev
runs-on: ubuntu-latest
needs: release
permissions:
contents: read
steps:
- name: Create Terraform Cloud run
uses: neuro-inc/terraform-cloud-run-action@v24.7.0
with:
token: ${{ secrets.TF_API_TOKEN }}
workspace: control-plane-apps-dev-421920
variables: |
platform_reports_version=${{ needs.release.outputs.version }}