getpkg/.gitea/workflows/BuildTestPublish.yaml
Your Name c0e62d59a0
All checks were successful
Build-Test-Publish / build (linux/amd64) (push) Successful in 22s
Build-Test-Publish / build (linux/arm64) (push) Successful in 24s
Build-Test-Publish / test-install-from-scratch (linux/amd64) (push) Successful in 7s
Build-Test-Publish / test-install-from-scratch (linux/arm64) (push) Successful in 8s
'Generic Commit'
2025-06-22 13:52:29 +12:00

58 lines
1.4 KiB
YAML

name: Build-Test-Publish
run-name: Build test and publish all tools
on: [push]
defaults:
run:
shell: bash
jobs:
build:
strategy:
matrix:
platform:
- linux/amd64
- linux/arm64
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to Gitea
uses: docker/login-action@v3
with:
registry: gitea.jde.nz
username: DoesntMatter
password: ${{ secrets.DOCKER_PUSH_TOKEN }}
- name: Build Test Publish All
run: |
SOS_WRITE_TOKEN=${{ secrets.SOS_WRITE_TOKEN }} ./buildtestpublish_all.sh
test-install-from-scratch:
needs: [build]
strategy:
matrix:
platform:
- linux/amd64
- linux/arm64
runs-on: ${{matrix.platform}}
steps:
- name: install
run: |
curl -s https://getbin.xyz/getpkg-install | bash
- name: test install
run: |
~/.local/bin/getpkg/getpkg install whatsdirty
- name: test update
run: |
~/.local/bin/getpkg/getpkg update
- name: test list
run: |
~/.local/bin/getpkg/getpkg list
- name: test uninstall
run: |
~/.local/bin/getpkg/getpkg uninstall whatsdirty
- name: test clean
run: |
~/.local/bin/getpkg/getpkg clean