Skip to content

Commit

Permalink
feature: Upload CI
Browse files Browse the repository at this point in the history
  • Loading branch information
LichtHund committed Jun 26, 2024
1 parent 5e891ac commit d2b3c2e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/upload.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Upload docs

on:
push:
branches: [ "update/new" ]

jobs:
upload:
runs-on: ubuntu-latest
container:
image: ghcr.io/triumphteam/website:latest
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

steps:
# Check out the repo to access the files
- name: Checkout
uses: actions/checkout@v3

# Run application with the files!
- name: Run
run: |
java -jar /app/application.jar -i $GITHUB_WORKSPACE -b ${{ secrets.AUTH }} -u https://new.triumphteam.dev/

0 comments on commit d2b3c2e

Please sign in to comment.