Skip to content

UploadClang

UploadClang #26

Workflow file for this run

name: UploadClang
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
inputs:
version:
description: LLVM Version
required: true
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: install requirements
run: pip3 install -r requirements.txt
- name: Package
env:
GITHUB_USERNAME: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./upload_clang.py ${{ github.event.inputs.version }}