Just always build latest docker images and let docker hub reject dupl… #1234
This file contains 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: Changesets | |
on: | |
push: | |
branches: | |
- main | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
changesets: | |
name: Make a PR or publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".tool-versions" | |
cache: pnpm | |
- uses: erlef/setup-beam@v1 | |
with: | |
version-type: strict | |
version-file: ".tool-versions" | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm -r build | |
- name: Create Release Pull Request or Publish | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
version: pnpm ci:version | |
publish: pnpm ci:publish | |
title: "chore: publish new package versions" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
HEX_API_KEY: ${{ secrets.HEX_API_KEY }} | |
- name: Add latest tag to published packages | |
if: steps.changesets.outputs.published == 'true' | |
run: node scripts/tag-latest.mjs | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |