Skip to content

modules: remove some zombie symbols #441

modules: remove some zombie symbols

modules: remove some zombie symbols #441

Workflow file for this run

# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 Robin Jarry
---
name: Publish
permissions:
contents: read
on:
push:
branches:
- main
tags:
- v*
jobs:
check:
permissions:
contents: read
actions: write
uses: ./.github/workflows/check.yml
package:
permissions:
contents: read
actions: write
uses: ./.github/workflows/package.yml
upload:
permissions:
actions: read
contents: write
runs-on: ubuntu-24.04
needs:
- check
- package
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/download-artifact@v4
with:
pattern: "*-packages"
merge-multiple: true
- uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_USER }}
password: ${{ secrets.QUAY_TOKEN }}
- uses: docker/metadata-action@v5
name: Extract metadata for the Docker image
id: meta-grout
with:
images: "quay.io/grout/grout"
tags: |
type=edge,branch=main
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- uses: docker/build-push-action@v6
with:
context: .
file: Containerfile.grout
tags: ${{ steps.meta-grout.outputs.tags }}
labels: ${{ steps.meta-grout.outputs.labels }}
push: true
- run: sed -n 's/^revision = /version=/p' subprojects/frr.wrap >> $GITHUB_OUTPUT
id: frr-version
- uses: docker/metadata-action@v5
name: Extract metadata for the Docker image
id: meta-frr
with:
images: "quay.io/grout/frr"
tags: |
type=edge,branch=main
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
labels: |
frr_version=${{steps.frr-version.outputs.version}}
- uses: docker/build-push-action@v6
with:
context: .
file: Containerfile.frr
tags: ${{ steps.meta-frr.outputs.tags }}
labels: ${{ steps.meta-frr.outputs.labels }}
push: true
- uses: pyTooling/Actions/releaser@r0
with:
token: ${{ github.token }}
tag: "edge"
files: |
grout*.rpm
grout*.*deb