Skip to content

Build and publish release - private fork #7

Build and publish release - private fork

Build and publish release - private fork #7

Workflow file for this run

name: Build and publish release - private fork
on:
push:
branches:
- 'experiment-private-fork'
# Allows you to run this workflow manually
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Set env to beta
if: contains(github.ref, '-beta.') || contains(github.ref, '-rc.')
run: |
echo "REACT_APP_NAME=Pybricks Beta" >> $GITHUB_ENV
echo "REACT_APP_SUFFIX=-beta" >> $GITHUB_ENV
- uses: actions/setup-node@v3
with:
node-version: '18.x'
- uses: actions/checkout@v3
- run: yarn install
# - run: yarn coverage
- uses: codecov/codecov-action@v3
with:
directory: coverage
- name: Build
run: yarn build
# - name: Install lftp
# run: sudo apt-get update && sudo apt-get install --yes lftp
# - name: Publish
# shell: bash
# env:
# LFTP_USER: ${{ secrets.lftpUser }}
# LFTP_PASSWORD: ${{ secrets.lftpPassword }}
# LFTP_SITE: ${{ secrets.lftpSite }}
# run: |
# lftp -e "open --user $LFTP_USER --env-password $LFTP_SITE && mirror --verbose --reverse --delete --exclude=.htaccess --exclude=.well-known build beta; exit"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
path: 'build/'
name: 'github-pages'
# deploy:
# needs: build
# runs-on: ubuntu-latest
# permissions:
# pages: write
# id-token: write
# environment:
# name: github-pages
# url: ${{ steps.deployment.outputs.page_url }}
# # url: 'https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/'
# steps:
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Deploy
uses: actions/deploy-pages@v4
id: deployment