Skip to content

Commit

Permalink
Fix post-release workflows (#9409)
Browse files Browse the repository at this point in the history
  • Loading branch information
brophdawg11 committed May 10, 2024
1 parent 7f30f0b commit 30a994e
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/release.yml
Expand Up @@ -81,8 +81,8 @@ jobs:
- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
node-version-file: ".nvmrc"
cache: "pnpm"

- id: find_package_version
run: |
Expand All @@ -98,26 +98,26 @@ jobs:
needs: [release, find_package_version]
uses: ./.github/workflows/release-comments.yml

deployments:
name: 🚀 Deployment Tests
if: github.repository == 'remix-run/remix'
needs: [release, find_package_version]
uses: ./.github/workflows/deployments.yml
secrets:
TEST_AWS_ACCESS_KEY_ID: ${{ secrets.TEST_AWS_ACCESS_KEY_ID }}
TEST_AWS_SECRET_ACCESS_KEY: ${{ secrets.TEST_AWS_SECRET_ACCESS_KEY }}
TEST_CF_ACCOUNT_ID: ${{ secrets.TEST_CF_ACCOUNT_ID }}
TEST_CF_GLOBAL_API_KEY: ${{ secrets.TEST_CF_GLOBAL_API_KEY }}
TEST_CF_EMAIL: ${{ secrets.TEST_CF_EMAIL }}
TEST_CF_PAGES_API_TOKEN: ${{ secrets.TEST_CF_PAGES_API_TOKEN }}
TEST_CF_API_TOKEN: ${{ secrets.TEST_CF_API_TOKEN }}
TEST_DENO_DEPLOY_TOKEN: ${{ secrets.TEST_DENO_DEPLOY_TOKEN }}
TEST_FLY_TOKEN: ${{ secrets.TEST_FLY_TOKEN }}
# deployments:
# name: 🚀 Deployment Tests
# if: github.repository == 'remix-run/remix'
# needs: [release, find_package_version]
# uses: ./.github/workflows/deployments.yml
# secrets:
# TEST_AWS_ACCESS_KEY_ID: ${{ secrets.TEST_AWS_ACCESS_KEY_ID }}
# TEST_AWS_SECRET_ACCESS_KEY: ${{ secrets.TEST_AWS_SECRET_ACCESS_KEY }}
# TEST_CF_ACCOUNT_ID: ${{ secrets.TEST_CF_ACCOUNT_ID }}
# TEST_CF_GLOBAL_API_KEY: ${{ secrets.TEST_CF_GLOBAL_API_KEY }}
# TEST_CF_EMAIL: ${{ secrets.TEST_CF_EMAIL }}
# TEST_CF_PAGES_API_TOKEN: ${{ secrets.TEST_CF_PAGES_API_TOKEN }}
# TEST_CF_API_TOKEN: ${{ secrets.TEST_CF_API_TOKEN }}
# TEST_DENO_DEPLOY_TOKEN: ${{ secrets.TEST_DENO_DEPLOY_TOKEN }}
# TEST_FLY_TOKEN: ${{ secrets.TEST_FLY_TOKEN }}

stacks:
name: 🥞 Remix Stacks Test
if: github.repository == 'remix-run/remix'
needs: [release, find_package_version]
uses: ./.github/workflows/stacks.yml
with:
version: ${{ needs.find_package_version.outputs.package_version }}
# stacks:
# name: 🥞 Remix Stacks Test
# if: github.repository == 'remix-run/remix'
# needs: [release, find_package_version]
# uses: ./.github/workflows/stacks.yml
# with:
# version: ${{ needs.find_package_version.outputs.package_version }}

0 comments on commit 30a994e

Please sign in to comment.