mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-01 17:34:14 +01:00
41 lines
992 B
YAML
41 lines
992 B
YAML
name: release
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v[0-9]+.[0-9]+.[0-9]+'
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout code
|
|
uses: actions/checkout@v3
|
|
-
|
|
name: Install Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.21.x'
|
|
-
|
|
name: Install node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '20'
|
|
cache: 'npm'
|
|
cache-dependency-path: './web/package-lock.json'
|
|
-
|
|
name: Docker login
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.DOCKER_HUB_TOKEN }}
|
|
-
|
|
name: Install dependencies
|
|
run: make build-deps-ubuntu
|
|
-
|
|
name: Build and publish
|
|
run: make release
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
-
|
|
name: Print build results and checksums
|
|
run: make cli-build-results
|