Skip to content

Commit

Permalink
testing github action
Browse files Browse the repository at this point in the history
  • Loading branch information
janniclas committed Jul 21, 2024
1 parent 67ce9f3 commit d58c499
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/technicalLag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

# Output build artifacts to /github/workspace on the container.
- name: Execute technical lag calculator
uses: fraunhofer-iem/technical-lag-action@v0.0.1
id: techlag
with:
inputPath: packageFiles/azurechat
outputPath: statistics

- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
with:
name: technical_lag_artifacts
path: ${{ github.workspace }}/statistics

0 comments on commit d58c499

Please sign in to comment.