This repository has been archived on 2025-12-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
garm-test-pipeline/.github/workflows/.github-ci.yaml

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'