We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f0a071 commit 2006ed8Copy full SHA for 2006ed8
1 file changed
README.md
@@ -154,7 +154,10 @@ Use the following GitHub actions workflow to continuiously deploy your project t
154
```yaml
155
name: Vercel
156
157
-on: push
+on:
158
+ push:
159
+ branches:
160
+ - main
161
162
env:
163
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
@@ -164,7 +167,7 @@ env:
164
167
jobs:
165
168
deploy:
166
169
runs-on: ubuntu-latest
- container: swift:5.7-amazonlinux2
170
+ container: swift:5.10-amazonlinux2
171
172
steps:
173
- uses: actions/checkout@v3
@@ -173,7 +176,8 @@ jobs:
176
with:
174
177
path: .build
175
178
key: ${{ runner.os }}-spm-${{ hashFiles('Package.resolved') }}
- restore-keys: ${{ runner.os }}-spm-
179
+ restore-keys: |
180
+ ${{ runner.os }}-spm-
181
182
- uses: actions/setup-node@v3
183
0 commit comments