fix(GIST-87): config prettier eslint add them on husky (#36) #40
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 | |
on: | |
push: | |
branches: | |
- main # or main | |
permissions: | |
contents: read # for checkout | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
outputs: | |
tag: ${{ steps.get-tag.outputs.tag }} | |
permissions: | |
contents: write # to be able to publish a GitHub release | |
issues: write # to be able to comment on released issues | |
pull-requests: write # to be able to comment on released pull requests | |
id-token: write # to enable use of OIDC for npm provenance | |
env: | |
DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} | |
DOCKER_REGISTRY_PASSWORD: ${{ secrets.DOCKER_REGISTRY_PASSWORD }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "lts/*" | |
- name: Install dependencies | |
run: | | |
npm install -g pnpm | |
pnpm install --frozen-lockfile | |
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies | |
run: pnpm audit signatures | |
- name: Compute release version | |
id: get-tag | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
VERSION_SPACES=$(npx semantic-release --dryRun | grep -oP 'Published release \K.*? ') | |
VERSION="${VERSION_SPACES// /}" | |
echo "The version is $VERSION" | |
echo "tag=$VERSION" >> $GITHUB_OUTPUT | |
- name: Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: npx semantic-release | |
deploy: | |
name: deploy_project | |
runs-on: ubuntu-latest | |
needs: release | |
env: | |
TAG: ${{ needs.release.outputs.tag }} | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v4 | |
with: | |
repository: Courtcircuits/cluster | |
token: "${{ secrets.DEPLOYMENT_TOKEN }}" | |
- name: Update values.yaml | |
run: | | |
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq && \ | |
chmod +x /usr/bin/yq | |
cd projects/gists/gists-front | |
/usr/bin/yq eval -i '.tag = env(TAG)' tag.yaml | |
git config --global user.name "GIST Bot" | |
git config --global user.email "ci.deployment.gists@users.noreply.github.com" | |
git add tag.yaml | |
git commit -m "app gist | ${{ env.TAG }} | ${{ github.event.head_commit.message }}" | |
git push |