Skip to content

Build on arm

Build on arm #6

Workflow file for this run

name: Release
on:
push:
branches: [nsavoire/ci_build]
tags:
- 'v*'
jobs:
build:
name: Build
uses: ./.github/workflows/build.yml
release:
needs: build
name: Release
runs-on: ubuntu-latest
permissions:
actions: read
contents: write
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
- name: Create assets
run: |
tar czf otel-profiling-agent-${GITHUB_REF_NAME}-aarch64.tar.gz -C agent-aarch64 .
tar czf otel-profiling-agent-${GITHUB_REF_NAME}-x86_64.tar.gz -C agent-x86_64 .
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: "otel-profiling-agent-${GITHUB_REF_NAME}-aarch64.tar.gz, otel-profiling-agent-${GITHUB_REF_NAME}-x86_64.tar.gz"
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true
omitBody: true
draft: true