We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18aaf84 commit fe744f1Copy full SHA for fe744f1
.github/workflows/deploy-package.yml
@@ -20,18 +20,18 @@ jobs:
20
steps:
21
- name: Checkout code
22
uses: actions/checkout@v3
23
+
24
+ - name: Use yarn@4.5.3
25
+ run: |
26
+ corepack enable
27
+ corepack prepare yarn@4.5.3 --activate
28
29
- name: Set up Node.js
30
uses: actions/setup-node@v3
31
with:
32
node-version: "20"
33
cache: 'yarn'
34
- - name: Use yarn@4.5.3
- run: |
- corepack enable
- corepack prepare yarn@4.5.3 --activate
-
35
- name: Config identity
36
run: |
37
git config --global user.email "${{ secrets.ADMIN_EMAIL }}"
0 commit comments