-
Notifications
You must be signed in to change notification settings - Fork 20
38 lines (35 loc) · 1.05 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
name: Build and publish release
on:
push:
tags:
- 'v2.*'
jobs:
build:
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"