/
githubmirror
/
ionic-framework
Обзор
Документация
Войти
/
githubmirror
/
ionic-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/nightly.yml
40 строк
1 KB
renovate[bot]
chore(deps): update actions/checkout action to v7.0.1 (#31278)
30 июл 2026, 17:16
Не верифицирован
30 июл 2026, 17:16
048788f
Код
Авторство
О чём код?
name: 'Ionic Nightly Build' on: workflow_call: permissions: contents: read id-token: write jobs: create-nightly-hash: runs-on: ubuntu-latest outputs: nightly-hash: ${{ steps.create-nightly-hash.outputs.NIGHTLY_HASH }} steps: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 # 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: contents: read id-token: write uses: ./.github/workflows/release-ionic.yml secrets: inherit with: tag: nightly version: ${{ needs.create-nightly-hash.outputs.nightly-hash }}