mirror of
https://github.com/asmogo/nws.git
synced 2024-12-12 18:36:22 +00:00
Update Github action (#38)
This commit is contained in:
parent
fc4d71cbc9
commit
59ff5034f9
@ -1,11 +1,9 @@
|
||||
name: gobuild
|
||||
name: latest
|
||||
|
||||
on:
|
||||
push:
|
||||
# run only against tags
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
42
.github/workflows/tag.yml
vendored
42
.github/workflows/tag.yml
vendored
@ -1,4 +1,5 @@
|
||||
name: goreleaser
|
||||
name: gobuild
|
||||
|
||||
|
||||
on:
|
||||
push:
|
||||
@ -6,30 +7,27 @@ on:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
# packages: write
|
||||
# issues: write
|
||||
|
||||
jobs:
|
||||
goreleaser:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@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:
|
||||
fetch-depth: 0
|
||||
- run: git fetch --force --tags
|
||||
- uses: actions/setup-go@v3
|
||||
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:
|
||||
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
|
||||
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:${{github.ref_name}}
|
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@ -1,6 +1,6 @@
|
||||
name: tests
|
||||
|
||||
on: [ push, pull_request ]
|
||||
on: [ pull_request ]
|
||||
|
||||
jobs:
|
||||
golang:
|
||||
|
@ -26,7 +26,6 @@ services:
|
||||
exit:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: cmd/nws/Dockerfile
|
||||
container_name: exit
|
||||
command: [ "./nws","exit" ]
|
||||
networks:
|
||||
@ -41,7 +40,6 @@ services:
|
||||
exit-https:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: cmd/nws/Dockerfile
|
||||
container_name: exit-https
|
||||
command: ["./nws","exit","--port", "4443", "--target", "http://mint:3338"]
|
||||
networks:
|
||||
@ -56,7 +54,6 @@ services:
|
||||
entry:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: cmd/nws/Dockerfile
|
||||
command: [ "./nws","entry"]
|
||||
container_name: entry
|
||||
ports:
|
||||
|
Loading…
Reference in New Issue
Block a user