We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9ea40af + d494bd7 commit f1e126cCopy full SHA for f1e126c
.github/workflows/release.yml
@@ -15,9 +15,17 @@ jobs:
15
steps:
16
- name: Check out code
17
uses: actions/checkout@v3
18
- - name: Set up docker image
19
- run: docker build -t volta .
20
- working-directory: ./ci/docker
+ - name: Set up docker buildx
+ uses: docker/setup-buildx-action@v2
+ - name: Build docker image
21
+ uses: docker/build-push-action@v3
22
+ with:
23
+ cache-from: type=gha
24
+ cache-to: type=gha,mode=max
25
+ context: ./ci/docker
26
+ push: false
27
+ load: true
28
+ tags: volta
29
- name: Compile and package Volta
30
run: docker run --volume ${PWD}:/root/workspace --workdir /root/workspace --rm --init --tty volta /root/workspace/ci/build-linux.sh volta-linux
31
- name: Upload release artifact
0 commit comments