-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: split toolchains into separate repo
Signed-off-by: Artur Troian <[email protected]>
- Loading branch information
Showing
19 changed files
with
374 additions
and
248 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: goreleaser-pro | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
tag: | ||
|
||
env: | ||
GO111MODULE: on | ||
jobs: | ||
goreleaser-pro: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- run: git fetch --prune --unshallow | ||
- name: Setup env | ||
uses: c-py/action-dotenv-to-setenv@v3 | ||
with: | ||
env-file: .env | ||
- name: Define and set tags | ||
shell: bash | ||
id: meta | ||
run: | | ||
cross_pro_tags="$(./scripts/image-tags.sh cross-pro)" | ||
echo 'cross_pro_tags<<EOF' >> $GITHUB_OUTPUT | ||
echo "$cross_pro_tags" >> $GITHUB_OUTPUT | ||
echo 'EOF' >> $GITHUB_OUTPUT | ||
- name: Set docker push behavior | ||
uses: tj-actions/branch-names@v6 | ||
id: branch-name | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Install cosign | ||
uses: sigstore/cosign-installer@main | ||
- uses: actions/setup-go@v3 | ||
with: | ||
go-version: "${{ env.GO_VERSION }}" | ||
- name: Build and push goreleaser pro image | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: . | ||
platforms: linux/amd64,linux/arm64 | ||
push: true | ||
tags: ${{ steps.meta.outputs.cross_pro_tags }} | ||
build-args: | | ||
"GO_VERSION=${{env.GO_VERSION}}" | ||
"GORELEASER_VERSION=${{env.GORELEASER_VERSION}}" | ||
"GORELEASER_DISTRIBUTION=-pro" | ||
"DEBIAN_FRONTEND=${{env.DEBIAN_FRONTEND}}" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: goreleaser | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
tag: | ||
|
||
env: | ||
GO111MODULE: on | ||
jobs: | ||
goreleaser: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- run: git fetch --prune --unshallow | ||
- name: Setup env | ||
uses: c-py/action-dotenv-to-setenv@v3 | ||
with: | ||
env-file: .env | ||
- name: Define and set tags | ||
shell: bash | ||
id: meta | ||
run: | | ||
cross_tags="$(./scripts/image-tags.sh cross)" | ||
echo 'cross_tags<<EOF' >> $GITHUB_OUTPUT | ||
echo "$cross_tags" >> $GITHUB_OUTPUT | ||
echo 'EOF' >> $GITHUB_OUTPUT | ||
- name: Set docker push behavior | ||
uses: tj-actions/branch-names@v6 | ||
id: branch-name | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Install cosign | ||
uses: sigstore/cosign-installer@main | ||
- uses: actions/setup-go@v3 | ||
with: | ||
go-version: "${{ env.GO_VERSION }}" | ||
- name: Build and push goreleaser image | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: . | ||
platforms: linux/amd64,linux/arm64 | ||
push: true | ||
tags: ${{ steps.meta.outputs.cross_tags }} | ||
build-args: | | ||
"GO_VERSION=${{env.GO_VERSION}}" | ||
"GORELEASER_VERSION=${{env.GORELEASER_VERSION}}" | ||
"DEBIAN_FRONTEND=${{env.DEBIAN_FRONTEND}}" |
Oops, something went wrong.