Nightly #1797
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: Nightly | |
on: | |
schedule: | |
- cron: 00 23 * * * | |
permissions: | |
contents: read | |
jobs: | |
publish: | |
name: Build nightly distribution | |
runs-on: ubuntu-latest | |
if: github.repository == 'fomantic/Fomantic-UI' | |
outputs: | |
shouldPublish: ${{ steps.nightly-version.outputs.shouldPublish }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: develop | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
registry-url: https://registry.npmjs.org/ | |
- name: pre-setup | |
run: sh ./scripts/preinstall.sh | |
- name: install dependencies | |
run: yarn | |
- name: update nightly version | |
id: nightly-version | |
run: node ./scripts/nightly-version.js | |
- name: fomantic install & build | |
if: ${{ steps.nightly-version.outputs.shouldPublish == 'yes' }} | |
run: yarn gulp install | |
- name: publish to npm | |
if: ${{ steps.nightly-version.outputs.shouldPublish == 'yes' }} | |
env: | |
CI: true | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTOMATION }} | |
run: | | |
npm config set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN | |
npm publish --tag nightly |