diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1364e34..589e3ef 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,3 +1,5 @@ +name: Release + on: release: types: [created] @@ -32,4 +34,5 @@ jobs: - uses: actions/checkout@v3 - uses: katyo/publish-crates@v2 with: - registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} \ No newline at end of file + registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} + ignore-unpublished-changes: true diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index a1e94a4..9d18724 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -32,4 +32,4 @@ jobs: - name: Build run: cargo build --verbose - name: Run tests - run: cargo test --verbose \ No newline at end of file + run: cargo test --verbose