Skip to content

Commit c1d7ea6

Browse files
authored
Remove references to VERCEL (created from initial repo cloning) (#51)
1 parent 6874dba commit c1d7ea6

File tree

3 files changed

+1
-15
lines changed

3 files changed

+1
-15
lines changed

.github/workflows/auto-git-release-staging.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,6 @@ jobs:
4848
echo "previous_commit: ${{steps.next_semantic_version.outputs.previous_commit}}"
4949
echo "current_commit: ${{steps.next_semantic_version.outputs.current_commit}}"
5050
51-
- name: Creating Git release tag for the "v${{steps.next_semantic_version.outputs.version}}" version
52-
run: |
53-
gh release create v${{steps.next_semantic_version.outputs.version}} \
54-
--title "v${{steps.next_semantic_version.outputs.version}}" \
55-
--generate-notes \
56-
--prerelease \
57-
--target $GITHUB_SHA
58-
env:
59-
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
60-
6151
# Check if the major version already exists (if it doesn't, we'll create it - if it does, we'll update it)
6252
- name: Check if tag "v${{steps.next_semantic_version.outputs.major}}-rc" exists
6353
uses: mukunku/[email protected]

.github/workflows/run-integration-test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Summary:
22
# Test the GitHub Action using an integration test.
33
# Makes sure the GitHub Action works properly when running on a clean machine, without building anything (integration test).
4-
# This integration test will break if the Vercel project or deployment are deleted, or if the VERCEl_TOKEN doesn't have access to the deployment url.
54
#
65
# See https://github.com/actions/checkout https://github.com/actions/checkout/releases/tag/v3
76

.github/workflows/update-codeclimate-coverage.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Installing node.js
2222
uses: actions/setup-node@v3 # Used to install node environment - XXX https://github.com/actions/setup-node
2323
with:
24-
node-version: 18 # Use the same node.js version as the one Vercel's uses (currently node18.x)
24+
node-version: 18
2525
run-tests-coverage:
2626
name: Run tests coverage and send report to Code Climate
2727
runs-on: ubuntu-22.04
@@ -31,9 +31,6 @@ jobs:
3131
run: yarn install
3232
- uses: paambaati/[email protected]
3333
env:
34-
# XXX Necessary for running tests properly (required). Do not generate the token from a Vercel account with actual production usage. (use a dummy account)
35-
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }} # XXX Define this secret in "Github repo > Settings > Secrets", you can get it from Vercel at https://vercel.com/account/tokens
36-
VERCEL_DOMAIN: ${{ secrets.VERCEL_DOMAIN }} # XXX Define this secret in "Github repo > Settings > Secrets", it should use a domain the VERCEL_TOKEN you provided has access to
3734
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} # XXX Define this secret in "Github repo > Settings > Secrets", you can get it from Code Climate in "Repo settings > Test coverage".
3835
with:
3936
coverageCommand: yarn test:coverage

0 commit comments

Comments
 (0)