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.
1 parent e2843a4 commit 34f95c5Copy full SHA for 34f95c5
.github/workflows/ci.yml
@@ -83,3 +83,22 @@ jobs:
83
run: chmod +x terminus.phar
84
- name: Functional Tests
85
run: composer functional
86
+
87
+ release:
88
+ runs-on: ubuntu-latest
89
+ name: Release
90
+ container:
91
+ image: quay.io/pantheon-public/php-ci:1.x
92
+ needs: [functional]
93
+ if: ${{ startsWith(github.ref, 'refs/tags/') }}
94
+ steps:
95
+ - name: Download terminus.phar as artifact
96
+ uses: actions/download-artifact@v2
97
+ with:
98
+ name: terminus-phar
99
+ - name: Release
100
+ uses: softprops/action-gh-release@v1
101
102
+ files: terminus.phar
103
+ env:
104
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments