-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
112 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Don't change the line below! | ||
#! oxygen_storefront_id: 1000014875 | ||
|
||
name: Skeleton deploy | ||
on: [push] | ||
|
||
permissions: | ||
contents: read | ||
deployments: write | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy to Oxygen | ||
timeout-minutes: 30 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: ⎔ Setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: '.nvmrc' | ||
cache: 'npm' | ||
cache-dependency-path: '**/package-lock.json' | ||
|
||
- name: Cache node modules | ||
id: cache-npm | ||
uses: actions/cache@v4 | ||
env: | ||
cache-name: cache-node-modules | ||
with: | ||
path: ~/.npm | ||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-build-${{ env.cache-name }}- | ||
${{ runner.os }}-build- | ||
${{ runner.os }}- | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: 📦 Build packages | ||
run: | | ||
CI=true npm run build:pkg | ||
- name: Build and Publish to Oxygen | ||
id: deploy | ||
working-directory: templates/skeleton | ||
run: npx shopify hydrogen deploy --no-lockfile-check | ||
env: | ||
SHOPIFY_HYDROGEN_DEPLOYMENT_TOKEN: ${{ secrets.OXYGEN_DEPLOYMENT_TOKEN_1000014875 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# Don't change the line below! | ||
#! oxygen_storefront_id: 1000014888 | ||
|
||
name: Examples deploy | ||
on: [push] | ||
|
||
permissions: | ||
contents: read | ||
deployments: write | ||
|
||
jobs: | ||
setup_environment: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
optimistic_cart_ui: '${{ secrets.OXYGEN_DEPLOYMENT_TOKEN_1000014888 }}' | ||
- name: Set up environment | ||
run: echo "success"; | ||
|
||
deploy: | ||
name: Deploy to Oxygen | ||
timeout-minutes: 30 | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
examples: | ||
[ | ||
{ | ||
name: 'optimistic-cart-ui', | ||
token: ${{ needs.setup_environment.outputs.optimistic_cart_ui }}, | ||
} | ||
] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: ⎔ Setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: '.nvmrc' | ||
cache: 'npm' | ||
cache-dependency-path: '**/package-lock.json' | ||
|
||
- name: Cache node modules | ||
id: cache-npm | ||
uses: actions/cache@v4 | ||
env: | ||
cache-name: cache-node-modules | ||
with: | ||
path: ~/.npm | ||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-build-${{ env.cache-name }}- | ||
${{ runner.os }}-build- | ||
${{ runner.os }}- | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: 📦 Build packages | ||
run: | | ||
CI=true npm run build:pkg | ||
- name: Build and Publish to Oxygen | ||
id: deploy | ||
working-directory: examples/${{ matrix.examples.name }} | ||
run: npx shopify hydrogen deploy --no-lockfile-check --diff | ||
env: | ||
SHOPIFY_HYDROGEN_DEPLOYMENT_TOKEN: ${{ matrix.examples.token }} |