runtime/.github/workflows/test.yml

20 lines
470 B
YAML
Raw Normal View History

2023-11-26 01:53:10 +00:00
name: Test build
2023-11-26 01:52:15 +00:00
on:
push:
branches: [ main ]
2023-11-26 01:53:10 +00:00
2023-11-26 01:52:15 +00:00
jobs:
2023-11-26 02:20:00 +00:00
build:
2023-11-26 01:52:15 +00:00
runs-on: [moon, amd64]
steps:
2023-11-26 02:20:00 +00:00
- uses: actions/checkout@v4
- name: Test build
2023-11-26 02:02:55 +00:00
run: |
2024-08-13 17:59:45 +00:00
# echo "${{ secrets.repo_password }}" | podman login -u $USERNAME --password-stdin $REPO
docker login gitea.ceperka.net -u "${{ secrets.REPO_USERNAME }}" -p "${{ secrets.REPO_PASSWORD }}"
task pipeline REPO=gitea.ceperka.net/rosti/runtime VERSION=pipeline
2023-11-26 02:02:55 +00:00
2023-11-26 01:53:10 +00:00