Skip to content

Commit

Permalink
Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lxylxy123456 committed Jun 12, 2022
1 parent fed5d21 commit 3ab123c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/zip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
- '40.0'
- '40'
- '41'
- '42'

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -58,6 +59,12 @@ jobs:
name: 41.zip
path: .

- name: Download 42
uses: actions/download-artifact@v2
with:
name: 42.zip
path: .

- name: Bump version and push tag
id: tag_version
uses: mathieudutour/github-tag-action@v5.1
Expand Down Expand Up @@ -118,3 +125,13 @@ jobs:
asset_name: 41.zip
asset_content_type: application/zip

- name: Release 42
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./42.zip
asset_name: 42.zip
asset_content_type: application/zip

0 comments on commit 3ab123c

Please sign in to comment.