mirror of
https://github.com/appleboy/scp-action.git
synced 2025-09-26 22:06:48 +00:00
Some checks failed
v1 version / test scp action (push) Failing after 9s
v1 version / test deploy artifact (push) Failing after 9s
v1 version / test changed-files (push) Failing after 11s
v1 version / test target folder (push) Failing after 12s
v1 version / test Multiple Host (push) Failing after 13s
lint and test / test scp action (push) Failing after 13s
lint and test / test deploy artifact (push) Failing after 13s
lint and test / test changed-files (push) Failing after 14s
lint and test / test target folder (push) Failing after 15s
lint and test / test Multiple Host (push) Failing after 16s
- Update actions/setup-go to v6 in the goreleaser workflow - Update tj-actions/changed-files to v47 in stable and testing workflows Signed-off-by: appleboy <appleboy.tw@gmail.com>
34 lines
648 B
YAML
34 lines
648 B
YAML
name: Goreleaser
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
goreleaser:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup go
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version: "^1"
|
|
|
|
- name: Run GoReleaser
|
|
uses: goreleaser/goreleaser-action@v6
|
|
with:
|
|
# either 'goreleaser' (default) or 'goreleaser-pro'
|
|
distribution: goreleaser
|
|
version: latest
|
|
args: release --clean
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|