We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9b63d3d + 6cf5546 commit 03edfffCopy full SHA for 03edfff
.github/workflows/tests.yml
@@ -5,9 +5,9 @@ on:
5
branches:
6
- 'master'
7
- 'xdebug_*'
8
+ tags:
9
+ - '*'
10
pull_request:
- release:
- types: [created]
11
create:
12
13
jobs:
@@ -101,10 +101,11 @@ jobs:
101
runs-on: ubuntu-latest
102
name: "PIE Release Artifacts"
103
needs: windows
104
- if: ${{ github.event_name == 'release' }}
+ if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
105
steps:
106
- name: Upload artifact to the release
107
uses: php/php-windows-builder/release@v1
108
with:
109
- release: ${{ github.event.release.tag_name }}
+ release: ${{ github.ref }}
110
token: ${{ secrets.GITHUB_TOKEN }}
111
+ draft: 'true'
0 commit comments