You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/intro/production-workflow.md
+50-1Lines changed: 50 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ When publishing on the [Chrome Web Store](https://chrome.google.com/webstore) (o
50
50
51
51
## Automatic build and release with Travis
52
52
53
-
If you are using [Travis](https://travis-ci.com/), you can setup [GitHub Releases upload](https://docs.travis-ci.com/user/deployment/releases/) in order to automatically build a zip of your extension and attach it to your GitHub releases ([example](https://github.com/Kocal-Web-Extensions/Solary/releases/tag/v1.9.0)):
53
+
If you are using [Travis](https://travis-ci.com/), you can setup [GitHub Releases upload](https://docs.travis-ci.com/user/deployment/releases/) in order to automatically build a zip of your extension and attach it to your GitHub releases ([example](https://github.com/Kocal/Solary/releases/tag/v1.9.0)):
54
54
55
55
```yaml
56
56
script:
@@ -73,3 +73,52 @@ deploy:
73
73
```
74
74
75
75
This is really useful if you don't want to manually run commands from [Building for production](https://vue-web-extension.netlify.app/intro/production-workflow#building-for-production).
76
+
77
+
## Automatic build and release with GitHub Actions
78
+
79
+
If you are using [GitHub Actions](https://github.com/features/actions), you can easily automatically build a zip of your extension and create a new GitHub release, each time a new tag is pushed.
80
+
81
+
```yml
82
+
on:
83
+
push:
84
+
tags:
85
+
- 'v*'# Push events to matching v*, i.e. v1.0, v20.15.10
0 commit comments