Skip to content

feat: update workflow, add release workflow #1

feat: update workflow, add release workflow

feat: update workflow, add release workflow #1

Workflow file for this run

name: Build
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write # to upload assets to releases
attestations: write # to upload assets attestation for build provenance
id-token: write # grant additional permission to attestation action to mint the OIDC token permission
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Build
run: |
go get ./...
go build -buildmode=c-shared -o dnf.so -v ./...
- name: Upload an artifact
uses: actions/upload-artifact@v4
with:
name: Vib plugin
path: ./dnf.so
- name: Upload a Release Asset
if: github.repository == 'kbdharun/vib-dnf'
uses: softprops/action-gh-release@v2
with:
files: dnf.so
- name: Attest generated files
if: github.repository == 'kbdharun/vib-dnf'
id: attest
uses: actions/attest-build-provenance@v1
with:
subject-path: '*.so'