Bump rexml from 3.4.1 to 3.4.2 #100
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: Publish | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - test | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - master | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: false | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.2' | |
| bundler-cache: true | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: npm | |
| - name: Setup Pages | |
| id: pages | |
| uses: actions/configure-pages@v4 | |
| - name: Npm | |
| run: | | |
| npm install | |
| - name: Less | |
| run: | | |
| ./node_modules/less/bin/lessc assets/css/_base.less assets/css/_base.css | |
| ./node_modules/clean-css-cli/bin/cleancss assets/css/_base.css -o assets/css/base.css -O1 -O2 "restructureRules:on" | |
| rm assets/css/_base.css | |
| - name: Build Site | |
| run: | | |
| bundle exec jekyll build --trace --profile --baseurl "${{ steps.pages.outputs.base_path }}" | |
| env: | |
| JEKYLL_ENV: production | |
| - uses: actions/upload-pages-artifact@v3 | |
| - name: Update Algolia index | |
| run: | | |
| bundle exec jekyll algolia push | |
| env: | |
| ALGOLIA_API_KEY: ${{ secrets.ALGOLIA_API_KEY }} | |
| if: env.ALGOLIA_API_KEY != '' | |
| continue-on-error: true | |
| publish: | |
| if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
| needs: build | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |