ci: new pipeline
This commit is contained in:
parent
326b2e459e
commit
5b815e1932
2 changed files with 39 additions and 1 deletions
35
.forgejo/workflows/dev.yml
Normal file
35
.forgejo/workflows/dev.yml
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
: Dev Version
|
||||||
|
run-name: ${{ github.actor }} is testing
|
||||||
|
on: ["push"]
|
||||||
|
jobs:
|
||||||
|
Release:
|
||||||
|
runs-on: docker
|
||||||
|
#container:
|
||||||
|
# image: goreleaser/goreleaser
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
#- run: goreleaser release --skip-publish --snapshot --rm-dist --debug
|
||||||
|
- name: Setup Go environment
|
||||||
|
uses: https://github.com/actions/setup-go@v2.1.3
|
||||||
|
with:
|
||||||
|
go-version: 1.20
|
||||||
|
- name: Run GoReleaser
|
||||||
|
uses: https://github.com/goreleaser/goreleaser-action@v4
|
||||||
|
with:
|
||||||
|
# either 'goreleaser' (default) or 'goreleaser-pro'
|
||||||
|
distribution: goreleaser
|
||||||
|
version: latest
|
||||||
|
args: release --clean
|
||||||
|
env:
|
||||||
|
GORELEASER_FORCE_TOKEN: "gitea"
|
||||||
|
- name: Upload to s3
|
||||||
|
uses: shallwefootball/s3-upload-action@master
|
||||||
|
with:
|
||||||
|
aws_key_id: ${{ secrets.AWS_KEY_ID }}
|
||||||
|
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY}}
|
||||||
|
aws_bucket: 'kekscloud-releases'
|
||||||
|
source_dir: 'dist'
|
||||||
|
destination_dir: 'http-server-status/'
|
||||||
|
endpoint: 's3.eu-central-003.backblazeb2.com'
|
|
@ -1,6 +1,9 @@
|
||||||
: Dev Version
|
: Dev Version
|
||||||
run-name: ${{ github.actor }} is testing
|
run-name: ${{ github.actor }} is testing
|
||||||
on: ["push"]
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- '*'
|
||||||
jobs:
|
jobs:
|
||||||
Release:
|
Release:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
|
|
Loading…
Reference in a new issue