woocommerce/.github/workflows/nightly-builds.yml

63 lines
1.8 KiB
YAML
Raw Normal View History

2020-04-28 02:32:19 +00:00
name: Nightly builds
on:
schedule:
- cron: '0 0 * * *' # Run at 12 AM UTC.
jobs:
build:
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]
runs-on: ubuntu-20.04
2020-04-28 02:32:19 +00:00
steps:
- name: Checkout code
2022-04-21 18:29:53 +00:00
uses: actions/checkout@v3
2020-04-28 02:32:19 +00:00
with:
ref: ${{ matrix.build }}
2022-05-13 20:43:33 +00:00
- name: Dependency caching
uses: actions/cache@v3
id: cache-deps
with:
path: |
~/.pnpm-store
2022-05-16 13:01:53 +00:00
~/.local/share/pnpm/store
2022-05-13 20:43:33 +00:00
~/.cache/composer/files
key: ${{ runner.os }}-nightly-builds-${{ secrets.WORKFLOW_CACHE }}-${{ hashFiles('**/composer.lock', '**/pnpm-lock.yaml') }}
- name: Install PNPM
2022-05-02 17:08:52 +00:00
run: npm install -g pnpm@^6.24.2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
- name: Build zip
working-directory: plugins/woocommerce
run: bash bin/build-zip.sh
2020-04-28 02:32:19 +00:00
- name: Deploy nightly build
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: plugins/woocommerce/woocommerce.zip
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-20.04
2020-04-28 02:32:19 +00:00
steps:
- name: Update nightly tag
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 }}