Skip to content

Commit

Permalink
Undo irrelevant changes
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryNguyen5 committed Oct 18, 2024
1 parent 4662189 commit be9a6db
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 167 deletions.
166 changes: 0 additions & 166 deletions .github/workflows/build-publish-develop-pr.yml

This file was deleted.

6 changes: 5 additions & 1 deletion .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
name: "Build Chainlink and Publish"

on:
# Mimics old circleci behaviour
push:
tags:
- "v*"
branches:
- "release/**"

env:
ECR_HOSTNAME: public.ecr.aws
Expand All @@ -18,13 +21,14 @@ jobs:
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- name: Check for VERSION file bump on tags
# Avoids checking VERSION file bump on forks.
if: ${{ github.repository == 'smartcontractkit/chainlink' }}
if: ${{ github.repository == 'smartcontractkit/chainlink' && startsWith(github.ref, 'refs/tags/v') }}
uses: ./.github/actions/version-file-bump
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

build-sign-publish-chainlink:
needs: [checks]
if: ${{ ! startsWith(github.ref_name, 'release/') }}
runs-on: ubuntu-20.04
environment: build-publish
permissions:
Expand Down

0 comments on commit be9a6db

Please sign in to comment.