mirror of
https://github.com/costinm/ugate.git
synced 2025-12-24 13:27:52 +08:00
84 lines
2.0 KiB
YAML
84 lines
2.0 KiB
YAML
name: Go
|
|
on: [push]
|
|
env:
|
|
GO111MODULE: on
|
|
|
|
# ACTIONS_ID_TOKEN_REQUEST_TOKEN
|
|
# ACTIONS_ID_TOKEN_REQUEST_URL
|
|
|
|
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication
|
|
# GITHUB_TOKEN secret auto-created (24h)
|
|
#
|
|
|
|
permissions:
|
|
contents: write
|
|
id-token: write # This is required for requesting the JWT
|
|
|
|
jobs:
|
|
build-docker:
|
|
name: Build-in-docker
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v2
|
|
|
|
# -
|
|
# name: Set up Docker Buildx
|
|
# uses: docker/setup-buildx-action@v1
|
|
# -
|
|
# name: Login to GitHub Container Registry
|
|
# uses: docker/login-action@v1
|
|
# with:
|
|
# registry: ghcr.io
|
|
# #registry: docker.pkg.github.com
|
|
# #username: ${{ github.actor }}
|
|
# username: ${{ github.repository_owner }}
|
|
# password: ${{ secrets.GITHUB_TOKEN }}
|
|
# -
|
|
|
|
- name: push
|
|
uses: docker/build-push-action@v1
|
|
with:
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
registry: docker.pkg.github.com
|
|
repository: costinm/ugate/ugate
|
|
tag_with_ref: true
|
|
# uses: docker/build-push-action@v2
|
|
# with:
|
|
# push: true
|
|
# context: .
|
|
# tags: |
|
|
# ghcr.io/costinm/cert-ssh/sshd:latest
|
|
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Set up Go 1.17
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.17
|
|
id: go
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Get dependencies
|
|
run: |
|
|
go mod download
|
|
|
|
- name: Build
|
|
run: |
|
|
env
|
|
echo GIT TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
cd cmd/ugate && go build -o ../../ugate -v .
|
|
|
|
- name: Upload ugate
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ugate
|
|
path: ugate
|