Skip to content

Commit

Permalink
Release v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jeje committed Jun 29, 2023
1 parent 56b06a1 commit 9d5b74a
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
ref: refs/tags/v${{ needs.get-tag.outputs.pkg-version }}
token: ${{ github.token }}

push-to-registry:
push-to-docker-registry:
name: "Push Docker image to Docker Hub"
if: ${{ github.event.workflow_run.conclusion == 'success' }}
needs:
Expand Down Expand Up @@ -125,3 +125,21 @@ jobs:
push: true
tags: jeje/ens-offchain-resolver-gateway-rs:latest,jeje/ens-offchain-resolver-gateway-rs:v${{ needs.get-tag.outputs.pkg-version }}
labels: ${{ steps.meta.outputs.labels }}

publish-crate:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- run: cargo publish --token ${CRATES_TOKEN}
env:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}
8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
[package]
name = "ens-offchain-resolver-gateway"
description = "ENS Offchain Resolver Gateway"
version = "0.1.2"
edition = "2021"
license = "MIT"
license-file = "LICENSE"
keywords = ["ensdomains", "gateway", "ccip"]
homepage = "https://github.com/jeje/ens-offchain-resolver-gateway-rs"
repository = "https://github.com/jeje/ens-offchain-resolver-gateway-rs"
documentation = "https://docs.rs/ens_gateway_server"
readme = "README.md"

[lib]
name = "ens_gateway_server"
Expand Down

0 comments on commit 9d5b74a

Please sign in to comment.