aboutsummaryrefslogblamecommitdiffhomepage
path: root/.github/workflows/nightly.yml
blob: 23898b7ef764b559121f19adc302cb4aba2ecf07 (plain) (tree)
1
2
3


             












                                 
                      










                                                                 
                              



                                                                  
name: Nightly

on:
  schedule:
    - cron: '0 3 * * *'

jobs:

  nightly:
    runs-on: ubuntu-latest

    steps:
      -
        name: Checkout develop
        uses: actions/checkout@v2
        with:
          ref: develop

      - uses: './.github/actions/reusable-prepare-peertube-build'
        with:
          node-version: '14.x'

      - name: Build
        run: npm run nightly

      - uses: './.github/actions/reusable-deploy'
        with:
          source: ./peertube-nightly-*
          destination: nightly
          knownHosts: ${{ secrets.STATS_DEPLOYEMENT_KNOWN_HOSTS }}
          deployKey: ${{ secrets.STATS_DEPLOYEMENT_KEY }}
          deployUser: ${{ secrets.STATS_DEPLOYEMENT_USER }}
          deployHost: ${{ secrets.STATS_DEPLOYEMENT_HOST }}