wip: move to forgejo actions
Some checks failed
Release / Build gatus with pre-packaged web assets (push) Failing after 2m56s
Some checks failed
Release / Build gatus with pre-packaged web assets (push) Failing after 2m56s
This commit is contained in:
parent
a5413ccd14
commit
528ce775a0
1 changed files with 17 additions and 17 deletions
34
.github/workflows/release.yml
vendored
34
.github/workflows/release.yml
vendored
|
|
@ -3,7 +3,7 @@ name: Release
|
||||||
env:
|
env:
|
||||||
PKG_VERSION: "2026.07.28"
|
PKG_VERSION: "2026.07.28"
|
||||||
# TODO: actions/checkout only supports GITHUB repos...
|
# TODO: actions/checkout only supports GITHUB repos...
|
||||||
GATUS_REPO: "selfhoster1312/gatus"
|
GATUS_REPO: "https://github.com/selfhoster1312/gatus"
|
||||||
GATUS_REF: "d65a3321f1291aa419870a04896aa65fc4c78cf4"
|
GATUS_REF: "d65a3321f1291aa419870a04896aa65fc4c78cf4"
|
||||||
# Preview mode: Publishes the build output as a CI artifact instead of creating
|
# Preview mode: Publishes the build output as a CI artifact instead of creating
|
||||||
# a release, allowing for manual inspection of the output. This mode is
|
# a release, allowing for manual inspection of the output. This mode is
|
||||||
|
|
@ -24,7 +24,6 @@ on:
|
||||||
- '.github/workflows/release.yml'
|
- '.github/workflows/release.yml'
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
|
||||||
cancel-in-progress: false
|
cancel-in-progress: false
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
|
|
@ -33,17 +32,18 @@ permissions:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build gatus with pre-packaged web assets
|
name: Build gatus with pre-packaged web assets
|
||||||
runs-on: ubuntu-22.04
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout sources
|
- name: Copy source repo
|
||||||
uses: actions/checkout@v7
|
run: |
|
||||||
with:
|
git clone "${{ env.GATUS_REPO }}" .
|
||||||
repository: "${{ env.GATUS_REPO }}"
|
git checkout "${{ env.GATUS_REF }}"
|
||||||
ref: "${{ env.GATUS_REF }}"
|
|
||||||
- name: Checkout sources for packaging
|
- name: Checkout sources for packaging
|
||||||
uses: actions/checkout@v7
|
run: |
|
||||||
with:
|
git clone "${{ forgejo.server_url }}/${{ forgejo.repository }}" __CI_PREBUILD__
|
||||||
path: "__CI_PREBUILD__"
|
cd __CI_PREBUILD__
|
||||||
|
git checkout "${{ forgejo.sha }}"
|
||||||
|
cd ..
|
||||||
- uses: actions/setup-go@v6
|
- uses: actions/setup-go@v6
|
||||||
with:
|
with:
|
||||||
go-version: 1.26.3
|
go-version: 1.26.3
|
||||||
|
|
@ -56,7 +56,7 @@ jobs:
|
||||||
go build -o dist/gatus-amd64
|
go build -o dist/gatus-amd64
|
||||||
cp dist/gatus-amd64 __CI_PREBUILD__/debian/gatus/usr/local/bin/gatus
|
cp dist/gatus-amd64 __CI_PREBUILD__/debian/gatus/usr/local/bin/gatus
|
||||||
- name: Build deb for amd64
|
- name: Build deb for amd64
|
||||||
uses: jiro4989/build-deb-action@86e86ceb88b13157fa569663d43c89346505fc3e
|
uses: https://github.com/jiro4989/build-deb-action@86e86ceb88b13157fa569663d43c89346505fc3e
|
||||||
with:
|
with:
|
||||||
package: gatus
|
package: gatus
|
||||||
package_root: __CI_PREBUILD__/debian/gatus
|
package_root: __CI_PREBUILD__/debian/gatus
|
||||||
|
|
@ -70,7 +70,7 @@ jobs:
|
||||||
GOARCH="arm64" go build -o dist/gatus-arm64
|
GOARCH="arm64" go build -o dist/gatus-arm64
|
||||||
cp dist/gatus-arm64 __CI_PREBUILD__/debian/gatus/usr/local/bin/gatus
|
cp dist/gatus-arm64 __CI_PREBUILD__/debian/gatus/usr/local/bin/gatus
|
||||||
- name: Build deb for arm64
|
- name: Build deb for arm64
|
||||||
uses: jiro4989/build-deb-action@86e86ceb88b13157fa569663d43c89346505fc3e
|
uses: https://github.com/jiro4989/build-deb-action@86e86ceb88b13157fa569663d43c89346505fc3e
|
||||||
with:
|
with:
|
||||||
package: gatus
|
package: gatus
|
||||||
package_root: __CI_PREBUILD__/debian/gatus
|
package_root: __CI_PREBUILD__/debian/gatus
|
||||||
|
|
@ -80,7 +80,7 @@ jobs:
|
||||||
id: build-deb-arm64
|
id: build-deb-arm64
|
||||||
|
|
||||||
- name: Upload binaries to release
|
- name: Upload binaries to release
|
||||||
uses: svenstaro/upload-release-action@29e53e917877a24fad85510ded594ab3c9ca12de # 2.11.5
|
uses: actions/forgejo-release@v2.13.4
|
||||||
if: env.preview == 'false'
|
if: env.preview == 'false'
|
||||||
with:
|
with:
|
||||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
@ -89,7 +89,7 @@ jobs:
|
||||||
tag: ${{ github.ref_name }}
|
tag: ${{ github.ref_name }}
|
||||||
overwrite: true
|
overwrite: true
|
||||||
- name: Upload amd64 deb to release
|
- name: Upload amd64 deb to release
|
||||||
uses: svenstaro/upload-release-action@29e53e917877a24fad85510ded594ab3c9ca12de # 2.11.5
|
uses: actions/forgejo-release@v2.13.4
|
||||||
if: env.preview == 'false'
|
if: env.preview == 'false'
|
||||||
with:
|
with:
|
||||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
@ -97,7 +97,7 @@ jobs:
|
||||||
tag: ${{ github.ref_name }}
|
tag: ${{ github.ref_name }}
|
||||||
overwrite: true
|
overwrite: true
|
||||||
- name: Upload arm64 deb to release
|
- name: Upload arm64 deb to release
|
||||||
uses: svenstaro/upload-release-action@29e53e917877a24fad85510ded594ab3c9ca12de # 2.11.5
|
uses: actions/forgejo-release@v2.13.4
|
||||||
if: env.preview == 'false'
|
if: env.preview == 'false'
|
||||||
with:
|
with:
|
||||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
@ -106,7 +106,7 @@ jobs:
|
||||||
overwrite: true
|
overwrite: true
|
||||||
|
|
||||||
- name: Upload gatus-amd64 as artifact
|
- name: Upload gatus-amd64 as artifact
|
||||||
uses: actions/upload-artifact@v7
|
uses: actions/forgejo-release@v2.13.4
|
||||||
if: env.preview == 'true'
|
if: env.preview == 'true'
|
||||||
with:
|
with:
|
||||||
name: gatus-amd64
|
name: gatus-amd64
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue