diff options
| author | Mikkel Hjortshøj <fyoucon@gmail.com> | 2020-04-11 17:36:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-11 17:36:30 +0200 |
| commit | df80e8752b39e45b3466330625e5db5dc4925aab (patch) | |
| tree | 5a248d2991e67d6f65b24691d0b4ec1141907765 /.github/workflows | |
| parent | 2df0532b179a4d435d73126c6caba345d2131705 (diff) | |
Update nightly.yml
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/nightly.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index c682ca454..24804b9f8 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -25,7 +25,7 @@ jobs: run: | call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat odin run examples/demo/demo.odin - - name: upload artifact + - name: Upload artifact uses: actions/upload-artifact@v1 with: name: exe @@ -33,16 +33,14 @@ jobs: upload_b2: runs-on: [linux] needs: [build] - container: - image: python:3.7-alpine steps: - name: Install B2 CLI shell: bash run: sudo pip install --upgrade b2 - - name: download exe + - name: Download exe uses: actions/download-artifact@v1 with: name: exe - - name: List artifact + - name: List artifacts run: find . -type f -printf "%T@ %p\n" | sort -nr | cut -d\ -f2- |