Skip to content

Commit

Permalink
Update & Fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kobrikx committed Aug 29, 2024
1 parent 23d3195 commit 3a22db7
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 81 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-dev.build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.20.x'
go-version: '1.23'

- name: Checkout code
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-prod.build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.20.x'
go-version: '1.23'

- name: Checkout code
uses: actions/checkout@v2
Expand Down
37 changes: 18 additions & 19 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ builds:
- viper_toml1

brews:
-
-
name: ize
repository:
owner: hazelops
Expand Down Expand Up @@ -84,9 +84,9 @@ archives:
- goos: windows
format: zip

# Repository to push the app manifest to.

scoops:
-
- # Repository to push the app manifest to.
repository:
owner: hazelops
name: scoop-ize
Expand All @@ -100,34 +100,34 @@ scoops:

# Folder inside the repository to put the scoop.
# Default is the root folder.
# directory: latest
# directory: latest

# Git author used to commit to the repository.
# Defaults are shown.
# Git author used to commit to the repository.
# Defaults are shown.
commit_author:
name: hazelops
email: [email protected]

# The project name and current git tag are used in the format string.
# The project name and current git tag are used in the format string.
commit_msg_template: "Ize update for {{ .ProjectName }} version {{ .Tag }}"

# Your app's homepage.
# Default is empty.
# Your app's homepage.
# Default is empty.
homepage: "https://ize.sh/"

# Your app's description.
# Default is empty.
# Your app's description.
# Default is empty.
description: "IZE is an opinionated infrastructure wrapper that allows to use multiple tools in one infra"

# Your app's license
# Default is empty.
# Your app's license
# Default is empty.
license: Apache License 2.0

# Setting this will prevent goreleaser to actually try to commit the updated
# manifest leaving the responsibility of publishing it to the user.
# If set to auto, the release will not be uploaded to the scoop bucket
# in case there is an indicator for prerelease in the tag e.g. v1.0.0-rc1
# Default is false.
# Setting this will prevent goreleaser to actually try to commit the updated
# manifest leaving the responsibility of publishing it to the user.
# If set to auto, the release will not be uploaded to the scoop bucket
# in case there is an indicator for prerelease in the tag e.g. v1.0.0-rc1
# Default is false.
skip_upload: false

# Persist data between application updates
Expand All @@ -146,4 +146,3 @@ scoops:
# GOAMD64 to specify which amd64 version to use if there are multiple versions
# from the build section.
# Default is v1.

118 changes: 58 additions & 60 deletions .goreleaser_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,64 +90,62 @@ archives:

scoops:
-
# Repository to push the app manifest to.
repository:
owner: hazelops
name: scoop-ize

# Optionally a branch can be provided.
# Defaults to the default repository branch.
branch: main

# Optionally a token can be provided, if it differs from the token provided to GoReleaser
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"

# Folder inside the repository to put the scoop.
# Default is the root folder.
directory: dev

# Git author used to commit to the repository.
# Defaults are shown.
commit_author:
name: hazelops
email: [email protected]

# The project name and current git tag are used in the format string.
commit_msg_template: "Ize update for {{ .ProjectName }} version {{ .Tag }}"

# Your app's homepage.
# Default is empty.
homepage: "https://ize.sh/"

# Your app's description.
# Default is empty.
description: "IZE is an opinionated infrastructure wrapper that allows to use multiple tools in one infra"

# Your app's license
# Default is empty.
license: Apache License 2.0

# Setting this will prevent goreleaser to actually try to commit the updated
# manifest leaving the responsibility of publishing it to the user.
# If set to auto, the release will not be uploaded to the scoop bucket
# in case there is an indicator for prerelease in the tag e.g. v1.0.0-rc1
# Default is false.
skip_upload: false

# Persist data between application updates
# persist:
# - "data"
# - "config.toml"

# An array of commands to be executed before an application is installed.
# Default is empty.
# pre_install: ["Write-Host 'Running preinstall command'"]

# An array of commands to be executed after an application is installed.
# Default is empty.
# post_install: ["Write-Host 'Running postinstall command'"]

# GOAMD64 to specify which amd64 version to use if there are multiple versions
# from the build section.
# Default is v1.
repository: # Repository to push the app manifest to.
owner: hazelops
name: scoop-ize

# Optionally a branch can be provided.
# Defaults to the default repository branch.
branch: main

# Optionally a token can be provided, if it differs from the token provided to GoReleaser
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"

# Folder inside the repository to put the scoop.
# Default is the root folder.
directory: dev

# Git author used to commit to the repository.
# Defaults are shown.
commit_author:
name: hazelops
email: [email protected]

# The project name and current git tag are used in the format string.
commit_msg_template: "Ize update for {{ .ProjectName }} version {{ .Tag }}"

# Your app's homepage.
# Default is empty.
homepage: "https://ize.sh/"

# Your app's description.
# Default is empty.
description: "IZE is an opinionated infrastructure wrapper that allows to use multiple tools in one infra"

# Your app's license
# Default is empty.
license: Apache License 2.0

# Setting this will prevent goreleaser to actually try to commit the updated
# manifest leaving the responsibility of publishing it to the user.
# If set to auto, the release will not be uploaded to the scoop bucket
# in case there is an indicator for prerelease in the tag e.g. v1.0.0-rc1
# Default is false.
skip_upload: false

# Persist data between application updates
# persist:
# - "data"
# - "config.toml"

# An array of commands to be executed before an application is installed.
# Default is empty.
# pre_install: ["Write-Host 'Running preinstall command'"]

# An array of commands to be executed after an application is installed.
# Default is empty.
# post_install: ["Write-Host 'Running postinstall command'"]

# GOAMD64 to specify which amd64 version to use if there are multiple versions
# from the build section.
# Default is v1.

0 comments on commit 3a22db7

Please sign in to comment.