Nightly Publish Main #139
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: Nigthly Publish Main | |
on: | |
workflow_dispatch: | |
schedule: | |
# * is a special character in YAML so quote this string | |
- cron: '0 2 * * *' | |
jobs: | |
# Run the common workflow to test and publish the main branch | |
Nightly_Publish_Main: | |
uses: 51Degrees/common-ci/.github/workflows/nightly-publish-main.yml@main | |
with: | |
repo-name: ${{ github.event.repository.name }} | |
build-platform: ubuntu-latest | |
secrets: | |
token: ${{ secrets.ACCESS_TOKEN }} | |
asset-keys: '{ "DeviceDetection": "${{ secrets.DEVICE_DETECTION_KEY }}", "DeviceDetectionUrl": "${{ secrets.DEVICE_DETECTION_URL }}", "NginxKey": "${{ secrets.NGINX_PLUS_KEY }}", "NginxCert": "${{ secrets.NGINX_PLUS_CERT }}" }' |