diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6b5a678..b6172bd 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,6 +20,7 @@ jobs: - uses: dprint/check@v2.2 build: runs-on: ubuntu-latest + needs: style steps: - uses: actions/checkout@v4 - name: Install & Build Website @@ -29,8 +30,8 @@ jobs: package-manager: bun@latest deploy: - needs: build runs-on: ubuntu-latest + needs: build environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index bfc3acf..3c1a915 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -12,6 +12,7 @@ jobs: tag: runs-on: ubuntu-latest + needs: style steps: - uses: actions/checkout@v2 with: @@ -23,3 +24,9 @@ jobs: BRANCH_HISTORY: last WITH_V: true PRERELEASE: true + + # Versions commit messages + MAJOR_STRING_TOKEN: "feat(major):" + MINOR_STRING_TOKEN: "feat(minor):" + PATCH_STRING_TOKEN: "feat(patch):" + NONE_STRING_TOKEN: "feat:" diff --git a/package.json b/package.json index 6f6de3a..d1d90e6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "website", "type": "module", - "version": "0.0.7", + "version": "1.0.1", "scripts": { "dev": "astro dev", "start": "astro dev",