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.
1 parent 4911a88 commit 8f79d01Copy full SHA for 8f79d01
.github/workflows/release.yml
@@ -15,9 +15,16 @@ 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: true
27
+ tags: volta
28
- name: Compile and package Volta
29
run: docker run --volume ${PWD}:/root/workspace --workdir /root/workspace --rm --init --tty volta /root/workspace/ci/build-linux.sh volta-linux
30
- name: Upload release artifact
0 commit comments