2020-04-28 02:32:19 +00:00
|
|
|
name: Nightly builds
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * *' # Run at 12 AM UTC.
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-03-16 00:44:01 +00:00
|
|
|
if: github.repository_owner == 'woocommerce'
|
2020-04-28 02:32:19 +00:00
|
|
|
name: Nightly builds
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-02-25 23:51:14 +00:00
|
|
|
build: [trunk]
|
2020-04-28 02:32:19 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
ref: ${{ matrix.build }}
|
|
|
|
- name: Build
|
|
|
|
id: build
|
2021-11-03 15:19:22 +00:00
|
|
|
uses: woocommerce/action-build@trunk
|
2020-04-28 02:32:19 +00:00
|
|
|
- name: Deploy nightly build
|
2020-10-20 14:13:41 +00:00
|
|
|
uses: WebFreak001/deploy-nightly@v1.1.0
|
2020-04-28 02:32:19 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: https://uploads.github.com/repos/${{ github.repository }}/releases/25945111/assets{?name,label}
|
|
|
|
release_id: 25945111
|
|
|
|
asset_path: ${{ steps.build.outputs.zip_path }}
|
2020-04-28 14:51:10 +00:00
|
|
|
asset_name: woocommerce-${{ matrix.build }}-nightly.zip
|
2020-04-28 02:32:19 +00:00
|
|
|
asset_content_type: application/zip
|
|
|
|
max_releases: 1
|
|
|
|
update:
|
|
|
|
name: Update nightly tag commit ref
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Update nightly tag
|
2020-11-06 10:34:18 +00:00
|
|
|
uses: richardsimko/github-tag-action@v1.0.5
|
2020-04-28 02:32:19 +00:00
|
|
|
with:
|
|
|
|
tag_name: nightly
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|