Skip to content

2.0.1

2.0.1 #15

# Don't change the line below!
#! oxygen_storefront_id: 1000011401
name: Storefront 1000011401
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
- run: echo "nvmrc=$(cat .nvmrc)" >> $GITHUB_ENV
id: nvmrc
- uses: actions/setup-node@v4
with:
node-version: '${{ env.nvmrc }}'
cache: npm
- run: npm ci
- name: Build and Publish to Oxygen
id: deploy
uses: shopify/oxygenctl-action@v4
env:
OKENDO_SUBSCRIBER_ID: '${{ secrets.OKENDO_SUBSCRIBER_ID }}'
with:
oxygen_deployment_token: ${{ secrets.OXYGEN_DEPLOYMENT_TOKEN_1000011401 }}
build_command: 'npm run build'
# Create GitHub Deployment
- name: Create GitHub Deployment
uses: shopify/github-deployment-action@v1
if: always()
with:
token: ${{ github.token }}
environment: 'preview'
preview_url: ${{ steps.deploy.outputs.url }}
description: ${{ github.event.head_commit.message }}