We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77616f1 commit e7b0ea7Copy full SHA for e7b0ea7
1 file changed
.github/workflows/template-check-version.yml
@@ -20,18 +20,22 @@ jobs:
20
steps:
21
- uses: actions/checkout@v4
22
23
- - uses: mamba-org/setup-micromamba@v2
24
- with:
25
- environment-name: ${{ github.event.repository.name }}-copier
26
- create-args: copier python=3.12
27
- post-cleanup: all
28
- cache-environment: true
29
-
30
- name: Add dummy GitHub credentials
31
run: |
32
git config --global user.name Copier update
33
git config --global user.email check@dummy.bot.com
34
+ - uses: prefix-dev/setup-pixi@v0.8.8
+ with:
+ cache: true
+ pixi-bin-path: ${{ runner.temp }}/bin/pixi
+ pixi-version: v0.44.0
+ run-install: false
+ post-cleanup: true
35
+
36
+ - name: Add copier
37
+ run: pixi global install copier
38
39
- name: Run copier update
40
run: copier update --skip-answered --defaults
41
0 commit comments