Skip to content

Commit

Permalink
Fix Ci settings
Browse files Browse the repository at this point in the history
  • Loading branch information
bouzuya committed Mar 1, 2023
1 parent cdf26df commit 873aeab
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions .github/workflows/ci.yml
Expand Up @@ -3,16 +3,14 @@ on:
push:
branches:
- "master"
tags:
- "*"
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
Expand All @@ -26,15 +24,3 @@ jobs:
target: x86_64-unknown-linux-gnu
- os: macos-latest
target: x86_64-apple-darwin
deploy:
if: ${{ success() && startsWith(github.ref, 'refs/tags/') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Deploy to GitHub Container Registry
- uses: VaultVulp/gp-docker-action@1.5.0
with:
# extract-git-tag: true
github-token: ${{ secrets.GITHUB_TOKEN }}
image-name: nostr-keyconv
image-tag: ${{ github.sha }}

0 comments on commit 873aeab

Please sign in to comment.