diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index d717e005..166bc780 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -53,23 +53,3 @@ jobs: run: bun install --frozen-lockfile - name: Runs ESLint run: bun run lint:eslint - - link-check: - env: - NUXT_UI_PRO_LICENSE: ${{ secrets.NUXT_UI_PRO_LICENSE }} - name: link_check - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 # v4 - - - uses: oven-sh/setup-bun@v1 - - - name: "Install dependencies" - run: bun install --production --frozen-lockfile - - - name: "Build site" - run: bun run build - - - uses: untitaker/hyperlink@0.1.32 - with: - args: .output/public/ --sources content/ diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index 5d24635f..2c56acfc 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -13,7 +13,7 @@ jobs: NUXT_UI_PRO_LICENSE: ${{ secrets.NUXT_UI_PRO_LICENSE }} if: ${{ github.event.repository.full_name == github.repository }} runs-on: ubuntu-latest - environment: prod + environment: production steps: - uses: actions/checkout@v4 # v4 with: diff --git a/.github/workflows/deploy-staging.yml b/.github/workflows/deploy-staging.yml index 03db1439..3f6baf75 100644 --- a/.github/workflows/deploy-staging.yml +++ b/.github/workflows/deploy-staging.yml @@ -14,6 +14,7 @@ jobs: env: NUXT_UI_PRO_LICENSE: ${{ secrets.NUXT_UI_PRO_LICENSE }} if: ${{ github.event.repository.full_name == github.repository }} + environment: staging runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 # v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1b2974c0..f159cf65 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: - uses: oven-sh/setup-bun@v1 - name: "Install dependencies" - run: bun install --frozen-lockfile + run: bun install --production --frozen-lockfile - name: "Release" run: bunx semantic-release diff --git a/bun.lockb b/bun.lockb index 1d53d906..edc9734e 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 60495cdf..0f445c1e 100644 --- a/package.json +++ b/package.json @@ -37,9 +37,6 @@ "devDependencies": { "@commitlint/cli": "^19.3.0", "@commitlint/config-conventional": "^19.2.2", - "@semantic-release/commit-analyzer": "^12.0.0", - "@semantic-release/github": "^10.0.5", - "@semantic-release/release-notes-generator": "^13.0.0", "@vue/test-utils": "^2.4.5", "cspell": "^8.7.0", "eslint": "^8.57.0", @@ -49,7 +46,6 @@ "markdownlint-cli2": "^0.13.0", "prettier": "^3.2.5", "prettier-eslint": "^16.3.0", - "prettier-plugin-tailwindcss": "^0.5.14", - "semantic-release": "^23.1.1" + "prettier-plugin-tailwindcss": "^0.5.14" } }