Skip to content

Commit

Permalink
Dockerfile builds v1.4.0-rc1 (#134)
Browse files Browse the repository at this point in the history
* Dockerfile builds v1.4.0-rc1
* Install Protoc lib
  • Loading branch information
MiguelDD1 authored Jan 19, 2023
1 parent 498815d commit 8cdc0a5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/releaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'

- name: install cargo deps and build avail
shell: bash
run: |
Expand All @@ -34,6 +39,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'

- name: install cargo deps and build avail
shell: bash
run: |
Expand Down Expand Up @@ -111,4 +121,4 @@ jobs:
file: ./Dockerfile
platforms: linux/amd64
push: true
tags: 0xpolygon/avail:${{ steps.prepare.outputs.tag_name }}
tags: 0xpolygon/avail:${{ steps.prepare.outputs.tag_name }}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN --mount=type=cache,id=build_apt,target=/var/cache/apt \
rustup default nightly && \
mkdir -p /avail

ARG AVAIL_TAG=v1.3.0-rc3
ARG AVAIL_TAG=v1.4.0-rc1

RUN \
# Build DA \
Expand Down

0 comments on commit 8cdc0a5

Please sign in to comment.