Some checks failed
dev release / build (push) Failing after 1s
bakery already fully covers what the PKGBUILD provided (binary, dependency declarations) except a LICENSE copy, which bakery.toml's new license_file field now closes. Removes packaging/arch/ and .forgejo/workflows/package.yml; adds the LICENSE artifact to each release/dev-release/beta-release workflow's prepare step. Not pacman-installed inside BOS today (BOS already consumes these apps exclusively via build-local.sh's skel-staging), so this only removes the option to `pacman -S` outside of BOS/bakery.
54 lines
1.8 KiB
YAML
54 lines
1.8 KiB
YAML
name: release
|
|
|
|
on:
|
|
push:
|
|
tags: ["v*"]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: [self-hosted, hestia]
|
|
steps:
|
|
- name: checkout
|
|
run: |
|
|
set -euo pipefail
|
|
rm -rf src && mkdir src
|
|
git clone --branch "${GITHUB_REF_NAME}" --depth 1 \
|
|
"https://git.breadway.dev/${GITHUB_REPOSITORY}.git" src
|
|
|
|
- name: build
|
|
run: cd src && cargo build --release --locked
|
|
|
|
- name: prepare artifacts
|
|
run: |
|
|
set -euo pipefail
|
|
VERSION="${GITHUB_REF_NAME#v}"
|
|
PKG_DIR="/srv/breadway-dl/breadbar/${VERSION}"
|
|
mkdir -p "${PKG_DIR}"
|
|
cp src/target/release/breadbar "${PKG_DIR}/breadbar-x86_64"
|
|
strip "${PKG_DIR}/breadbar-x86_64"
|
|
sha256sum "${PKG_DIR}/breadbar-x86_64" | awk '{print $1}' \
|
|
> "${PKG_DIR}/breadbar-x86_64.sha256"
|
|
cp src/LICENSE "${PKG_DIR}/"
|
|
cp src/bakery.toml "${PKG_DIR}/bakery.toml"
|
|
ln -sfn "${VERSION}" "/srv/breadway-dl/breadbar/latest"
|
|
|
|
- name: regenerate index.json
|
|
run: |
|
|
set -euo pipefail
|
|
rm -rf /tmp/bread-ecosystem-ci
|
|
git clone https://git.breadway.dev/Breadway/bread-ecosystem.git /tmp/bread-ecosystem-ci
|
|
bash /tmp/bread-ecosystem-ci/scripts/gen-index.sh
|
|
|
|
- name: upload to GitHub Release
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GH_RELEASE_TOKEN }}
|
|
run: |
|
|
set -euo pipefail
|
|
VERSION="${GITHUB_REF_NAME#v}"
|
|
PKG_DIR="/srv/breadway-dl/breadbar/${VERSION}"
|
|
gh release create "${GITHUB_REF_NAME}" --repo Breadway/breadbar \
|
|
--title "breadbar v${VERSION}" --generate-notes 2>/dev/null || true
|
|
gh release upload "${GITHUB_REF_NAME}" --repo Breadway/breadbar \
|
|
"${PKG_DIR}/breadbar-x86_64" \
|
|
"${PKG_DIR}/breadbar-x86_64.sha256" \
|
|
--clobber
|