Skip to content

Commit

Permalink
image
Browse files Browse the repository at this point in the history
  • Loading branch information
AndWeHaveAPlan authored Oct 1, 2024
1 parent 35e1121 commit 9faa6c9
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/tag-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
types: [opened, synchronize, reopened, ready_for_review]

env:
CI_IMAGE: "paritytech/ci-linux:production"
CARGO_INCREMENTAL: 0


Expand All @@ -17,7 +16,7 @@ jobs:
info:
runs-on: ubuntu-latest
container:
image: ${CI_IMAGE}
image: "paritytech/ci-linux:production"
steps:
- name: info
run: |
Expand All @@ -33,7 +32,7 @@ jobs:
lint:
runs-on: ubuntu-latest
container:
image: ${CI_IMAGE}
image: "paritytech/ci-linux:production"
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -49,7 +48,7 @@ jobs:
deny:
runs-on: ubuntu-latest
container:
image: ${CI_IMAGE}
image: "paritytech/ci-linux:production"
needs: [lint]
steps:
- name: Checkout
Expand All @@ -75,7 +74,7 @@ jobs:
test:
runs-on: ubuntu-latest
container:
image: ${CI_IMAGE}
image: "paritytech/ci-linux:production"
needs: [lint]
steps:
- name: Checkout
Expand Down Expand Up @@ -154,7 +153,7 @@ jobs:
cargo-publish-dry-run:
runs-on: ubuntu-latest
container:
image: ${CI_IMAGE}
image: "paritytech/ci-linux:production"
needs: [deny, test]
if: ${{ github.event_name == 'pull_request' }}
steps:
Expand All @@ -167,7 +166,7 @@ jobs:
npm-publish-dry-run:
runs-on: ubuntu-latest
container:
image: ${CI_IMAGE}
image: "paritytech/ci-linux:production"
needs: [deny, test]
if: ${{ github.event_name == 'pull_request' }}
steps:
Expand Down

0 comments on commit 9faa6c9

Please sign in to comment.