Skip to content

Commit

Permalink
Merge branch 'hotfix/v0.5.1' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
themihel committed Feb 20, 2021
2 parents a12e2ce + 1176f83 commit f6172ae
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ jobs:
outputs:
version: ${{ steps.package-version.outputs.current-version }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Get latest version of package.json
id: package-version
uses: martinbeentjes/npm-get-version-action@master
Expand All @@ -46,6 +48,11 @@ jobs:
with:
files: extension/
dest: WhereIsMyMeeting.zip
- name: Upload extension artifact
uses: actions/upload-artifact@v2
with:
name: WhereIsMyMeeting
path: WhereIsMyMeeting.zip
github_release:
name: Github release
needs: [tests, prepare_release]
Expand All @@ -63,20 +70,28 @@ jobs:
Further information will be added soon!
draft: false
prerelease: false
- name: Download extension artifact
uses: actions/download-artifact@v2
with:
name: WhereIsMyMeeting
- name: Add extension to Github release
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./WhereIsMyMeeting.zip
asset_path: WhereIsMyMeeting.zip
asset_name: WhereIsMyMeeting.zip
asset_content_type: application/zip
chrome_store_release:
name: Chrome store release
needs: [tests, prepare_release]
runs-on: ubuntu-latest
steps:
- name: Download extension artifact
uses: actions/download-artifact@v2
with:
name: WhereIsMyMeeting
- name: Upload extension to chrome store
run: echo "Coming soon" #TODO

0 comments on commit f6172ae

Please sign in to comment.