Skip to content

Commit

Permalink
Update action name
Browse files Browse the repository at this point in the history
  • Loading branch information
MorganCaron committed Mar 1, 2024
1 parent 69d5fb3 commit 7099686
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: LLVM Clang Build
name: Build LLVM Clang

on:
push:
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
- name: Upload LLVM as artifact
uses: actions/upload-artifact@v4
with:
name: llvm-clang-precompiled
name: llvm-clang
path: ${{ github.workspace }}/llvm/install
if-no-files-found: error
overwrite: true
Expand Down
12 changes: 6 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'Clang Precompiled Action'
description: 'Action to install precompiled LLVM Clang'
name: 'Install Latest Clang'
description: 'Action to install latest Clang'
author: 'MorganCaron'

branding:
Expand All @@ -18,20 +18,20 @@ runs:
with:
workflow: main.yml
workflow_conclusion: success
name: llvm-clang-precompiled
repo: MorganCaron/clang-precompiled-action
name: llvm-clang
repo: MorganCaron/latest-clang-action
path: llvm/
check_artifacts: true
search_artifacts: true
allow_forks: false

- name: LLVM Clang Path
- name: Adding Clang to Path
shell: bash
run: |
export PATH=$PATH:$GITHUB_WORKSPACE/llvm/install/bin
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$GITHUB_WORKSPACE/llvm/install/lib/x86_64-unknown-linux-gnu
- name: Verify LLVM Clang Installation
- name: Verify Clang Installation
shell: bash
run: |
clang --version
Expand Down

0 comments on commit 7099686

Please sign in to comment.