name: Continuous integration icons on: push: branches: - main paths: - icons/**/*.svg jobs: create-release: if: github.repository == 'lucide-icons/lucide' runs-on: ubuntu-latest outputs: VERSION: ${{ steps.new-version.outputs.NEW_VERSION }} steps: - uses: actions/checkout@v3 - uses: pnpm/action-setup@v2 with: version: 8 - uses: actions/setup-node@v3.8.1 with: node-version: 18 cache: 'pnpm' - name: Install dependencies run: pnpm install --frozen-lockfile - name: Fetch tags run: git fetch --all --tags - name: Get latest tag id: latest-tag run: echo "LATEST_TAG=$(git describe --tags `git rev-list --tags --max-count=1`)" >> $GITHUB_OUTPUT - name: Check if we can patch run: .github/workflows/version-up.sh --minor - name: Create new version id: new-version run: echo "NEW_VERSION=$(.github/workflows/version-up.sh --minor)" >> $GITHUB_OUTPUT - name: Create change log id: change-log run: | CHANGE_LOG=$(pnpm run generate:changelog --old-tag=${{ steps.latest-tag.outputs.LATEST_TAG }}) CHANGE_LOG=$(tail -n +5 <<< $CHANGE_LOG) echo $CHANGE_LOG EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64) echo "CHANGE_LOG<<$EOF" >> $GITHUB_OUTPUT echo "$CHANGE_LOG" >> $GITHUB_OUTPUT echo "$EOF" >> $GITHUB_OUTPUT env: GITHUB_API_KEY: ${{ secrets.GITHUB_TOKEN }} - name: Check output run: | echo '${{ steps.new-version.outputs.NEW_VERSION }}' echo '${{ steps.change-log.outputs.CHANGE_LOG }}' - name: Create Release uses: softprops/action-gh-release@v1 with: tag_name: ${{ steps.new-version.outputs.NEW_VERSION }} name: New icons ${{ steps.new-version.outputs.NEW_VERSION }} body: ${{ steps.change-log.outputs.CHANGE_LOG }} start-release: if: github.repository == 'lucide-icons/lucide' needs: create-release uses: './.github/workflows/release.yml' secrets: inherit with: version: ${{ needs.create-release.outputs.VERSION }}