Skip to content

ci: add npm caching #62

ci: add npm caching

ci: add npm caching #62

Workflow file for this run

name: goreleaser
on:
push:
tags:
- "*"
env:
REGISTRY: ghcr.io
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Cache node modules
uses: actions/cache@v3
with:
path: ./docs/node_modules
key: ${{ runner.os }}-npm-${{ hashFiles('**/docs/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install dependencies
run: |
cd docs
yarn install
- name: Build
run: |
cd docs
yarn build
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --clean
env:
DOCKER_CLI_EXPERIMENTAL: enabled
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}