mirror of
https://github.com/dcarrillo/whatismyip.git
synced 2024-11-16 08:31:13 +00:00
74 lines
2.0 KiB
YAML
74 lines
2.0 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
tags:
|
|
- '*'
|
|
pull_request:
|
|
|
|
concurrency: ${{ github.ref_name }}
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
make: ["lint", "unit-test", "integration-test"]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: install go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: go.mod
|
|
|
|
- name: ${{ matrix.make }}
|
|
run: make ${{ matrix.make }}
|
|
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
needs: tests
|
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
|
|
strategy:
|
|
matrix:
|
|
goosarch: [linux-amd64]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: install go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: go.mod
|
|
cache: true
|
|
|
|
- name: Set env
|
|
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
|
|
|
- name: Sign in to dockerhub
|
|
run: echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
|
|
|
|
- name: Deploy image
|
|
run: make docker-push VERSION=$RELEASE_VERSION
|
|
|
|
- name: Build
|
|
run: make build VERSION=$RELEASE_VERSION
|
|
|
|
- name: Prepare release
|
|
run: |
|
|
git log $(git describe HEAD~ --tags --abbrev=0)..HEAD --pretty='format:%h - %s <%an>' --no-merges > changelog.txt
|
|
tar zcvf whatismyip-$RELEASE_VERSION-${{matrix.goosarch}}.tar.gz whatismyip LICENSE README.md
|
|
sha256sum whatismyip-$RELEASE_VERSION-${{matrix.goosarch}}.tar.gz > whatismyip-$RELEASE_VERSION-${{matrix.goosarch}}.tar.gz.sha256
|
|
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
body_path: changelog.txt
|
|
files: |
|
|
whatismyip-${{env.RELEASE_VERSION}}-${{matrix.goosarch}}.tar.gz
|
|
whatismyip-${{env.RELEASE_VERSION}}-${{matrix.goosarch}}.tar.gz.sha256
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|