v19.32.1 #87
Workflow file for this run
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: Octicons Publish | |
| on: | |
| release: | |
| types: [published] | |
| workflow_dispatch: | |
| permissions: | |
| id-token: write # Required for OIDC | |
| contents: read | |
| checks: write | |
| statuses: write | |
| jobs: | |
| setup: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - run: npm install | |
| - run: npm run build | |
| - run: cp -r icons lib/build/svg | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: octicons | |
| path: ./lib/build | |
| gem: | |
| runs-on: ubuntu-latest | |
| needs: setup | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: octicons | |
| path: ./lib/build | |
| - uses: ./.github/actions/build_ruby | |
| env: | |
| RUBYGEMS_TOKEN: ${{ secrets.RUBYGEMS_TOKEN }} | |
| with: | |
| args: octicons_gem | |
| - run: ls ./lib/octicons_gem/pkg | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: octicons_gem | |
| path: ./lib/octicons_gem/pkg | |
| helper: | |
| runs-on: ubuntu-latest | |
| needs: gem | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: octicons | |
| path: ./lib/build | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: octicons_gem | |
| path: ./lib/octicons_helper/vendor/cache | |
| - uses: ./.github/actions/build_ruby | |
| with: | |
| args: octicons_helper | |
| # node: | |
| # runs-on: ubuntu-latest | |
| # needs: setup | |
| # steps: | |
| # - uses: actions/checkout@master | |
| # - uses: actions/download-artifact@v4 | |
| # with: | |
| # name: octicons | |
| # path: ./lib/build | |
| # - uses: ./.github/actions/build_node | |
| # with: | |
| # args: octicons_node | |
| angular: | |
| runs-on: ubuntu-latest | |
| needs: setup | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: octicons | |
| path: ./lib/build | |
| - name: Build @openproject/octicons-angular | |
| uses: ./.github/actions/build_angular | |
| with: | |
| args: octicons_angular |