|
|
@@ -4,6 +4,7 @@ run-name: "${{ format('release {0}', inputs.bump) }}"
|
|
|
on:
|
|
|
push:
|
|
|
branches:
|
|
|
+ - ci
|
|
|
- dev
|
|
|
- snapshot-*
|
|
|
workflow_dispatch:
|
|
|
@@ -35,7 +36,7 @@ jobs:
|
|
|
steps:
|
|
|
- uses: actions/checkout@v3
|
|
|
with:
|
|
|
- fetch-depth: 0
|
|
|
+ fetch-depth: 1
|
|
|
- uses: ./.github/actions/setup-bun
|
|
|
- id: version
|
|
|
run: |
|
|
|
@@ -56,9 +57,8 @@ jobs:
|
|
|
steps:
|
|
|
- uses: actions/checkout@v3
|
|
|
with:
|
|
|
- fetch-depth: 0
|
|
|
-
|
|
|
- - run: git fetch --force --tags
|
|
|
+ fetch-depth: 1
|
|
|
+ fetch-tags: true
|
|
|
|
|
|
- uses: ./.github/actions/setup-bun
|
|
|
|
|
|
@@ -102,7 +102,8 @@ jobs:
|
|
|
steps:
|
|
|
- uses: actions/checkout@v3
|
|
|
with:
|
|
|
- fetch-depth: 0
|
|
|
+ fetch-depth: 1
|
|
|
+ fetch-tags: true
|
|
|
|
|
|
- uses: apple-actions/import-codesign-certs@v2
|
|
|
if: ${{ runner.os == 'macOS' }}
|
|
|
@@ -124,8 +125,6 @@ jobs:
|
|
|
run: |
|
|
|
echo "${{ secrets.APPLE_API_KEY_PATH }}" > $RUNNER_TEMP/apple-api-key.p8
|
|
|
|
|
|
- - run: git fetch --force --tags
|
|
|
-
|
|
|
- uses: ./.github/actions/setup-bun
|
|
|
|
|
|
- name: install dependencies (ubuntu only)
|
|
|
@@ -201,7 +200,7 @@ jobs:
|
|
|
steps:
|
|
|
- uses: actions/checkout@v3
|
|
|
with:
|
|
|
- fetch-depth: 0
|
|
|
+ fetch-depth: 1
|
|
|
|
|
|
- name: Install OpenCode
|
|
|
if: inputs.bump || inputs.version
|