Ionic Nightly Build #749
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Ionic Nightly Build' | |
on: | |
schedule: | |
# Run every Monday-Friday | |
# at 6:00 UTC (6:00 am UTC) | |
- cron: '00 06 * * 1-5' | |
jobs: | |
create-nightly-hash: | |
runs-on: ubuntu-latest | |
outputs: | |
nightly-hash: ${{ steps.create-nightly-hash.outputs.NIGHTLY_HASH }} | |
steps: | |
- uses: actions/checkout@v4 | |
# A 1 is required before the timestamp | |
# as lerna will fail when there is a leading 0 | |
# See https://github.com/lerna/lerna/issues/2840 | |
- name: Install Dependencies | |
run: npm ci | |
shell: bash | |
- id: create-nightly-hash | |
name: Create Nightly Hash | |
# The date should output YYYYMMDD | |
# so that it is human readable | |
run: | | |
echo "NIGHTLY_HASH=$(node ./.scripts/bump-version.js)-nightly.$(date +%Y%m%d)" >> $GITHUB_OUTPUT | |
shell: bash | |
release-ionic: | |
needs: [create-nightly-hash] | |
permissions: | |
id-token: write | |
uses: ./.github/workflows/release-ionic.yml | |
with: | |
tag: nightly | |
version: ${{ needs.create-nightly-hash.outputs.nightly-hash }} | |
secrets: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |