Skip to content

Commit

Permalink
Fixed non-existant path
Browse files Browse the repository at this point in the history
  • Loading branch information
CreepPork committed Mar 15, 2019
1 parent 0c14db6 commit 424a3e3
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- script: sphinx-build -nWT -b dummy docs/source/ docs/build/html
displayName: 'Build documentation'

- job: Package
- job: Build
steps:
- script: |
sudo add-apt-repository ppa:koffeinflummi/armake
Expand All @@ -33,16 +33,17 @@ jobs:
- task: PublishPipelineArtifact@0
inputs:
targetPath: release/
artifactName: 'releaseZip'
targetPath: $(System.DefaultWorkingDirectory)/release

- job: Deploy
- job: Release
dependsOn:
- Test
- Package
- Build
steps:
- task: DownloadPipelineArtifact@0
inputs:
targetPath: $(System.DefaultWorkingDirectory)
targetPath: $(System.DefaultWorkingDirectory)/release

- script: "cd release && curl -F 'zip=@$(ls *.zip | head -n1)' -F 'accessToken=$(access.token)' $(access.url)"
displayName: 'Upload files'

0 comments on commit 424a3e3

Please sign in to comment.