Skip to content

Update actions/checkout digest to eef6144 #22

Update actions/checkout digest to eef6144

Update actions/checkout digest to eef6144 #22

Workflow file for this run

# .github/workflows/release.yml
name: goreleaser
on:
pull_request:
push:
# run only against tags
tags:
- "*"
permissions:
contents: write
jobs:
goreleaser:
permissions:
contents: write
packages: write
actions: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
with:
fetch-depth: 1
- name: Set up Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5
with:
go-version: stable
# More assembly might be required: Docker logins, GPG, etc.
# It all depends on your needs.
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 # v6
with:
# either 'goreleaser' (default) or 'goreleaser-pro'
distribution: goreleaser
# 'latest', 'nightly', or a semver
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
# Your GoReleaser Pro key, if you are using the 'goreleaser-pro' distribution
# GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
- name: Publish to NPM
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Publish
run: |
git config --global user.email "${{ secrets.EMAIL }}"
git config --global user.name "Matronator"
cp README.md ./npm/README.md
cd ./npm && npm version from-git --no-git-tag-version && npm publish
git fetch && git checkout main && git pull && git add . && git commit -am "Bump npm version" && git push origin --all
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
- name: Push Formula to Tap
uses: cpina/github-action-push-to-another-repository@07c4d7b3def0a8ebe788a8f2c843a4e1de4f6900 # v1.7.2
env:
API_TOKEN_GITHUB: ${{ secrets.GH_TOKEN }}
with:
source-directory: 'Formula'
destination-github-username: 'matronator'
destination-repository-name: 'homebrew-tap'
user-email: ${{ secrets.EMAIL }}
target-branch: 'main'
target-directory: 'Formula'