fix: don't crash on unclosed brace in tuple inside map inside anonymo… #90
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: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| release: | |
| name: release | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| otp: [27.0] | |
| elixir: [1.17.x] | |
| steps: | |
| - uses: googleapis/release-please-action@v4.1 | |
| id: release | |
| - uses: actions/checkout@v3 | |
| if: ${{ steps.release.outputs.release_created }} | |
| - uses: erlef/setup-beam@v1 | |
| with: | |
| otp-version: ${{matrix.otp}} | |
| elixir-version: ${{matrix.elixir}} | |
| if: ${{ steps.release.outputs.release_created }} | |
| - uses: actions/cache@v3 | |
| id: cache | |
| if: ${{ steps.release.outputs.release_created }} | |
| with: | |
| path: | | |
| deps | |
| _build | |
| key: ${{ runner.os }}-mix-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-mix-${{ matrix.otp }}-${{ matrix.elixir }}- | |
| - name: Install Dependencies | |
| if: steps.release.outputs.release_created && steps.cache.outputs.cache-hit != 'true' | |
| run: mix deps.get | |
| - name: publish to hex | |
| if: ${{ steps.release.outputs.release_created }} | |
| env: | |
| HEX_API_KEY: ${{secrets.HEX_API_KEY}} | |
| run: | | |
| mix hex.publish --yes | |