Skip to content

Commit d30a454

Browse files
authored
Updated alt style (#115)
* Updated alt-style. * Fixed yaml file format. * Fixed yaml file format.
1 parent de3632d commit d30a454

File tree

2 files changed

+23
-23
lines changed

2 files changed

+23
-23
lines changed

.github/workflows/deploy-prod.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -25,24 +25,24 @@ jobs:
2525
- run: yarn install && yarn webpack && yarn build
2626
- run: yarn release
2727
- run: yarn deploy:prod --token ${{ secrets.FIREBASE_TOKEN }}
28-
- name: Create Release
29-
id: create_release
30-
uses: actions/create-release@v1
31-
env:
32-
GITHUB_TOKEN: ${{ secrets.GH_ACTION_TOKEN }}
33-
with:
34-
tag_name: ${{ github.ref }}
35-
release_name: Release ${{ github.ref }}
36-
draft: false
37-
prerelease: false
38-
- name: Upload Release Asset
39-
id: upload-release-asset
40-
uses: actions/upload-release-asset@v1
41-
env:
42-
GITHUB_TOKEN: ${{ secrets.GH_ACTION_TOKEN }}
43-
with:
44-
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
45-
asset_path: ./extension.zip
46-
asset_name: chrome-extension.zip
47-
asset_content_type: application/zip
28+
- name: Create Release
29+
id: create_release
30+
uses: actions/create-release@v1
31+
env:
32+
GITHUB_TOKEN: ${{ secrets.GH_ACTION_TOKEN }}
33+
with:
34+
tag_name: ${{ github.ref }}
35+
release_name: Release ${{ github.ref }}
36+
draft: false
37+
prerelease: false
38+
- name: Upload Release Asset
39+
id: upload-release-asset
40+
uses: actions/upload-release-asset@v1
41+
env:
42+
GITHUB_TOKEN: ${{ secrets.GH_ACTION_TOKEN }}
43+
with:
44+
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
45+
asset_path: ./extension.zip
46+
asset_name: chrome-extension.zip
47+
asset_content_type: application/zip
4848

.github/workflows/deploy-staging.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
- run: yarn install && yarn webpack && yarn build
2424
- run: yarn release
2525
- run: yarn deploy:staging --token ${{ secrets.FIREBASE_TOKEN }}
26-
- name: Upload artifacts
27-
uses: actions/upload-artifact@v2
26+
- name: Upload artifacts
27+
uses: actions/upload-artifact@v2
2828
with:
29-
name: chrome-extension
29+
name: chrome-extension
3030
path: extension

0 commit comments

Comments
 (0)