Skip to content

Commit

Permalink
add upload.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chen310 committed Mar 4, 2022
1 parent b10aa78 commit 87df8d2
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/upload.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: "upload"

on:
workflow_dispatch:

concurrency:
group: upload-workflow
cancel-in-progress: true

jobs:
upload-files:
name: upload
runs-on: ubuntu-latest
steps:
- name: Clone local repository
uses: actions/checkout@v2
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: code
path: |
./
!./.git/
!./.github/
!./public/
!./serverless/
!./.dockerignore
!./.gitignore
!./requirements.txt
!./Dockerfile
!./ql_update.py
!./README.md
!./scheduler.py

0 comments on commit 87df8d2

Please sign in to comment.