update mirror #886
This file contains hidden or 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: update mirror | |
| permissions: | |
| contents: read | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: "0 0,6,12,18 * * *" | |
| jobs: | |
| generate: | |
| name: Generate backend files | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v7 | |
| with: | |
| persist-credentials: false | |
| - name: Install rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Generate backend files | |
| run: | | |
| mkdir -p tmp/revocation/ tmp/intermediates | |
| cargo run --locked --release --bin mozilla-crlite -- tmp/revocation/ production --manifest-comment="$GITHUB_REPOSITORY run $GITHUB_RUN_ID" | |
| # backwards compatible location & manifest | |
| cp tmp/revocation/* tmp/ | |
| jq '. + {filters: .files} | del(.files)' tmp/manifest.json > tmp/manifest.json.new | |
| mv tmp/manifest.json.new tmp/manifest.json | |
| cargo run --locked --release --bin intermediates -- tmp/intermediates/ --manifest-comment="$GITHUB_REPOSITORY run $GITHUB_RUN_ID" | |
| - name: Package and upload artifact | |
| uses: actions/upload-pages-artifact@v5 | |
| with: | |
| path: ./tmp/ | |
| deploy: | |
| name: Deploy | |
| runs-on: ubuntu-latest | |
| if: github.repository == 'rustls/upki' && github.ref == 'refs/heads/main' | |
| needs: generate | |
| permissions: | |
| pages: write | |
| id-token: write | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v5 |