Skip to content

Commit

Permalink
Release v1.1.1
Browse files Browse the repository at this point in the history
## v1.1.1 - 2024-09-15

### Fixed

* Set tag within CI.


## v1.1.0 - 2024-09-15

### Enhanced

* Moved converter unit names to generator.

### Fixed

* CRLF endings.
  • Loading branch information
dstaroff authored Sep 15, 2024
2 parents 01b0817 + c781bca commit b7e53ff
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changes/v1.1.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## v1.1.1 - 2024-09-15

### Fixed

* Set tag within CI.
26 changes: 24 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,32 @@ jobs:
outputs:
latest: ${{ steps.latest.outputs.output }}

goreleaser:
name: Release ${{ needs.get-version.outputs.latest }}
set-tag:
name: Set tag
needs:
- get-version
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0

- name: Set tag
id: set
uses: anothrNick/github-tag-action@777684df761b882a3f4f70db16ac70d8cc78d0ea # v1.70.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CUSTOM_TAG: ${{ needs.get-version.outputs.latest }}
WITH_V: true

outputs:
tag: ${{ steps.set.outputs.tag }}

goreleaser:
name: Release ${{ needs.set-tag.outputs.tag }}
needs:
- set-tag
environment: terraform-registry
runs-on: ubuntu-latest
steps:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## v1.1.1 - 2024-09-15

### Fixed

* Set tag within CI.


## v1.1.0 - 2024-09-15

### Enhanced
Expand Down

0 comments on commit b7e53ff

Please sign in to comment.