Skip to content

Commit

Permalink
Update workflow to use newer upload-artifact action with proper names (
Browse files Browse the repository at this point in the history
  • Loading branch information
PatTheMav authored Apr 16, 2020
1 parent 01d2f5b commit de486ae
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,17 @@ jobs:
if: success()
shell: bash
run: ./osx-install-tools.sh
- name: Get Current Date
shell: bash
id: get_date
run: echo ::set-output name=CURRENT_DATE::$(date +"%Y-%m-%d")
- name: Build and Package
if: success()
shell: bash
run: ./build-package-deps-osx.sh
- name: PublishBuildArtifacts
if: success() && github.event_name != 'pull_request'
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v2-preview
with:
name: macos-deps
path: './osx'
name: '${{ steps.get_date.outputs.CURRENT_DATE }}'
path: ./osx/*.tar.gz

0 comments on commit de486ae

Please sign in to comment.