fibonacci_pipeline/.github/workflows/.github-ci.yaml
richardrobertreitz 1e773c0025
Some checks failed
ci-workflow / ci (push) Failing after 22s
Update .github/workflows/.github-ci.yaml
2025-02-06 18:21:04 +00:00

27 lines
681 B
YAML

name: ci-workflow
on: [push]
jobs:
ci:
runs-on: docker
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker meta
uses: docker/metadata-action@v5
id: meta
with:
images: richardrobertreitz/fibonacci_go
- name: Build
uses: https://codeberg.org/umglurf/kaniko-action@main
with:
credentials: |
forgejo.edf-bootstrap.cx.fg1.ffm.osc.live=${{ secrets.PACKAGES_USER }}:${{ secrets.PACKAGES_TOKEN }}
destinations: |
${{ steps.meta.outputs.tags }}
# push: ${{ github.event_name != 'pull_request' }}
push: 'true'