Skip to content

Commit

Permalink
fixing github actions to run on tags (algorand#208)
Browse files Browse the repository at this point in the history
* Update build.yml

* Update build.yml
  • Loading branch information
algojack authored and algoidurovic committed Mar 23, 2022
1 parent d4ec5de commit bc403cc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: "Build workflow"
on:
pull_request:
push:
tags:
- v**
branches:
- master
jobs:
Expand Down Expand Up @@ -52,7 +54,7 @@ jobs:
upload-to-pypi:
runs-on: ubuntu-20.04
needs: ['build-test']
if: ${{ github.event_name == 'push' && contains(github.ref, 'master') && startsWith(github.ref, 'refs/tags') }}
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags') }}
steps:
- name: Check out code
uses: actions/checkout@v2
Expand Down

0 comments on commit bc403cc

Please sign in to comment.