Skip to content

Commit

Permalink
fix compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
asmogo committed Aug 28, 2024
1 parent b071a92 commit bbbde35
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 50 deletions.
28 changes: 0 additions & 28 deletions .github/workflows/master.yml

This file was deleted.

42 changes: 20 additions & 22 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
@@ -1,35 +1,33 @@
name: goreleaser
name: gobuild


on:
push:
# run only against tags
tags:
- '*'

permissions:
contents: write
# packages: write
# issues: write

jobs:
goreleaser:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git fetch --force --tags
- uses: actions/setup-go@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
go-version: '>=1.21.2'
cache: true
# More assembly might be required: Docker logins, GPG, etc. It all depends
# on your needs.
- uses: goreleaser/goreleaser-action@v2
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Docker Setup Buildx
uses: docker/setup-buildx-action@v2.0.0
- name: Build and push
uses: docker/build-push-action@v3
with:
# either 'goreleaser' (default) or 'goreleaser-pro'
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
platforms: linux/amd64,linux/arm64
push: true
tags: asmogo/nws:latest

0 comments on commit bbbde35

Please sign in to comment.