forked from pybricks/pybricks-code
-
Notifications
You must be signed in to change notification settings - Fork 0
72 lines (65 loc) · 2.41 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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