Release #4
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: Release | |
| on: | |
| workflow_run: | |
| workflows: ["Build MarioISN (macOS & Linux)"] # nom du workflow build | |
| types: [completed] | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| actions: read # nécessaire pour télécharger les artefacts d’un autre workflow run | |
| jobs: | |
| release: | |
| if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # indispensable pour récupérer tous les tags | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| # Télécharge les artefacts du run qui vient de finir | |
| - name: Download artifacts from build run | |
| uses: actions/download-artifact@v4 | |
| with: | |
| run-id: ${{ github.event.workflow_run.id }} | |
| path: dist | |
| - name: Install | |
| run: npm ci | |
| - name: Release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: npm run release |