Release v0.86.0 #477
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.
Learn more about bidirectional Unicode characters
| name: Docker | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - '**' | |
| jobs: | |
| publish: | |
| name: Publish | |
| if: github.repository == 'VHDL-LS/rust_hdl' | |
| strategy: | |
| matrix: | |
| crate: | |
| - vhdl_lang | |
| - vhdl_ls | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - uses: jerray/publish-docker-action@87d84711629b0dc9f6bb127b568413cc92a2088e # v1.0.5 | |
| env: | |
| CRATE: ${{ matrix.crate }} | |
| with: | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| repository: kraigher/${{ matrix.crate }} | |
| auto_tag: true | |
| build_args: CRATE | |
| # A job is required when the publish job is skipped | |
| skip-publish: | |
| name: Skip publish | |
| if: github.repository != 'VHDL-LS/rust_hdl' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Report | |
| run: echo Skipped action from repository ${{ github.repository }} |