fix: reset après submit (#826) #250
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: Release version | |
on: | |
push: | |
branches: [main, next] | |
jobs: | |
tests: | |
uses: "./.github/workflows/ci.yml" | |
secrets: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
release: | |
concurrency: | |
group: "release-${{ github.workflow }}-${{ github.ref }}" | |
permissions: write-all | |
outputs: | |
VERSION: ${{ steps.get-version.outputs.VERSION }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
persist-credentials: true | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
**/node_modules | |
.yarn/install-state.gz | |
.yarn/cache | |
key: yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: yarn- | |
- name: Install dependencies | |
run: yarn install | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
with: | |
platforms: linux/amd64 | |
install: true | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Expose GitHub Runtime | |
uses: crazy-max/ghaction-github-runtime@v2 | |
- name: bump and release | |
run: yarn release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
GITHUB_REF_NAME: ${{ env.GITHUB_REF_NAME }} | |
- name: Retrieve version | |
id: get-version | |
run: echo "VERSION=$(git describe --tags --abbrev=0 | cut -c2-)" >> "$GITHUB_OUTPUT" | |
deploy: | |
concurrency: | |
group: "deploy-${{ github.workflow }}-${{ github.ref }}" | |
needs: ["release"] | |
name: Deploy ${{ needs.release.outputs.VERSION }} on recette | |
uses: "./.github/workflows/_deploy.yml" | |
with: | |
environment: recette | |
app_version: ${{ needs.release.outputs.VERSION }} | |
secrets: | |
DEPLOY_SSH_PRIVATE_KEY: ${{ secrets.DEPLOY_SSH_PRIVATE_KEY }} | |
DEPLOY_PASS: ${{ secrets.DEPLOY_PASS }} | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
VAULT_PWD: ${{ secrets.VAULT_PWD }} |