Skip to content

Fix changelog script to not fail on main branch #71

Fix changelog script to not fail on main branch

Fix changelog script to not fail on main branch #71

Workflow file for this run

# Copyright (c) 2021-2024 Antmicro <www.antmicro.com>
# SPDX-License-Identifier: Apache-2.0
name: Release creation
on:
push:
branches:
- main
schedule:
- cron: '59 23 * * SUN'
jobs:
release-creation:
runs-on: ubuntu-latest
container:
image: debian:bookworm
steps:
- name: Install git package
run: |
apt-get update -qq
apt-get install -y git
- uses: actions/checkout@v4
- name: Build packages
run: ./.github/scripts/ci.sh package_dist
- name: Build package cores
run: |
./.github/scripts/ci.sh package_cores
tar -cf build/cores_export.tar -C build/export .
- name: Publish or update the release
uses: softprops/action-gh-release@v2
with:
tag_name: latest
name: topwrap
body: Built from ${{ github.sha }}
fail_on_unmatched_files: true
make_latest: true
files: |
dist/topwrap*.tar.gz
build/cores_export.tar