name: Build and publish release on: push: tags: - 'v1.*' - '!v1.*-beta.*' - '!v1.*-rc.*' jobs: build: runs-on: ubuntu-latest steps: - uses: actions/setup-node@v1 with: node-version: '12.x' - uses: actions/checkout@v2 - run: yarn install - run: yarn coverage - name: Coveralls uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} - 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 code; exit"