Support for sharing hex files through mobile share APIs #3090
This file contains hidden or 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
| name: build | |
| on: | |
| release: | |
| types: [created] | |
| push: | |
| branches: | |
| - "**" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ startsWith(github.ref, 'refs/tags/v') && 'release' || github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags/v') }} | |
| jobs: | |
| build: | |
| # Skip apps releases - handled by ios-build.yml and android-build.yml | |
| if: ${{ github.event_name != 'release' || !contains(github.event.release.tag_name, '-apps') }} | |
| timeout-minutes: 10 | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: read | |
| env: | |
| AWS_DEFAULT_REGION: eu-west-1 | |
| PRODUCTION_CLOUDFRONT_DISTRIBUTION_ID: EDKYRQ3JZCXQ5 | |
| # As per production because beta stage is served from there | |
| BETA_CLOUDFRONT_DISTRIBUTION_ID: EDKYRQ3JZCXQ5 | |
| STAGING_CLOUDFRONT_DISTRIBUTION_ID: E37K3V5Y65XQIX | |
| REVIEW_CLOUDFRONT_DISTRIBUTION_ID: E3KUGPF02I4CJ4 | |
| VITE_FOUNDATION_BUILD: ${{ github.repository_owner == 'microbit-foundation' }} | |
| # Not really secret but worth keeping out the repo to prevent unintended use | |
| VITE_SENTRY_DSN: ${{ secrets.PROTOTYPE_SENTRY_DSN }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 24 | |
| cache: "npm" | |
| registry-url: "https://npm.pkg.github.com" | |
| - uses: microbit-foundation/npm-package-versioner-action@v1 | |
| - run: npm ci | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - run: echo "ML_THEME_VERSION=$(jq -r '.["theme-package-version"]' workflow-config.json)" >> $GITHUB_ENV | |
| - run: npm install --no-save @microbit-foundation/ml-trainer-microbit@${{ env.ML_THEME_VERSION }} @microbit-foundation/website-deploy-aws@0.6 @microbit-foundation/website-deploy-aws-config@0.10 | |
| if: github.repository_owner == 'microbit-foundation' | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - run: node ./bin/print-ci-env.cjs >> $GITHUB_ENV | |
| - run: npm run ci | |
| - name: Run Playwright tests | |
| if: env.STAGE == 'REVIEW' || env.STAGE == 'STAGING' || env.STAGE == 'BETA' | |
| uses: docker://mcr.microsoft.com/playwright:v1.57.0-jammy | |
| with: | |
| args: npx playwright test | |
| - name: Store reports | |
| if: (env.STAGE == 'REVIEW' || env.STAGE == 'STAGING' || env.STAGE == 'BETA') && failure() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: playwright-report | |
| path: playwright-report/ | |
| retention-days: 3 | |
| - run: npx website-deploy-aws | |
| if: github.repository_owner == 'microbit-foundation' && (env.STAGE == 'REVIEW' || success()) | |
| env: | |
| AWS_ACCESS_KEY_ID: ${{ secrets.WEB_DEPLOY_ML_AWS_ACCESS_KEY_ID }} | |
| AWS_SECRET_ACCESS_KEY: ${{ secrets.WEB_DEPLOY_ML_AWS_SECRET_ACCESS_KEY }} | |
| - run: npx invalidate-cloudfront-distribution | |
| if: github.repository_owner == 'microbit-foundation' && (env.STAGE == 'REVIEW' || success()) | |
| env: | |
| AWS_ACCESS_KEY_ID: ${{ secrets.WEB_DEPLOY_ML_AWS_ACCESS_KEY_ID }} | |
| AWS_SECRET_ACCESS_KEY: ${{ secrets.WEB_DEPLOY_ML_AWS_SECRET_ACCESS_KEY }} |