Skip to content

Commit ced616f

Browse files
committed
unfuck .github
1 parent 5c16c15 commit ced616f

5 files changed

Lines changed: 35 additions & 31 deletions

File tree

.github/workflows/push-blocklock-agent-docker.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
# DEPRECATED: This workflow has been replaced by docker-build-and-push.yml
2-
# which builds all Docker images in a unified, efficient manner.
3-
# This file is kept for reference but should not be used.
4-
5-
name: push-blocklock-agent-docker-deprecated
1+
name: push-blocklock-agent-docker
62
on:
7-
# Disabled - use docker-build-and-push.yml instead
8-
workflow_dispatch:
3+
push:
4+
branches:
5+
# all branches, docker image is only pushed on main
6+
- "*"
7+
tags:
8+
- 'v[0-9]+.[0-9]+.[0-9]+*'
9+
pull_request:
910

1011
env:
1112
SERVICE_ACCOUNT: github@randamu-prod.iam.gserviceaccount.com

.github/workflows/push-dsigner-docker.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
# DEPRECATED: This workflow has been replaced by docker-build-and-push.yml
2-
# which builds all Docker images in a unified, efficient manner.
3-
# This file is kept for reference but should not be used.
4-
5-
name: push-dsigner-docker-deprecated
1+
name: push-dsigner-docker
62
on:
7-
# Disabled - use docker-build-and-push.yml instead
8-
workflow_dispatch:
3+
push:
4+
branches:
5+
# all branches, docker image is only pushed on main
6+
- "*"
7+
tags:
8+
- 'v[0-9]+.[0-9]+.[0-9]+*'
9+
pull_request:
910

1011
env:
1112
SERVICE_ACCOUNT: github@randamu-prod.iam.gserviceaccount.com

.github/workflows/push-onlyswaps-verifier.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
# DEPRECATED: This workflow has been replaced by docker-build-and-push.yml
2-
# which builds all Docker images in a unified, efficient manner.
3-
# This file is kept for reference but should not be used.
4-
5-
name: push-onlyswaps-verifier-deprecated
1+
name: push-onlyswaps-verifier-docker
62
on:
7-
# Disabled - use docker-build-and-push.yml instead
8-
workflow_dispatch:
3+
push:
4+
branches:
5+
# all branches, docker image is only pushed on main
6+
- "*"
7+
tags:
8+
- 'v[0-9]+.[0-9]+.[0-9]+*'
9+
pull_request:
910

1011
env:
1112
SERVICE_ACCOUNT: github@randamu-prod.iam.gserviceaccount.com

.github/workflows/push-randomness-agent-docker.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
# DEPRECATED: This workflow has been replaced by docker-build-and-push.yml
2-
# which builds all Docker images in a unified, efficient manner.
3-
# This file is kept for reference but should not be used.
4-
5-
name: push-randomness-agent-docker-deprecated
1+
name: push-randomness-agent-docker
62
on:
7-
# Disabled - use docker-build-and-push.yml instead
8-
workflow_dispatch:
3+
push:
4+
branches:
5+
# all branches, docker image is only pushed on main
6+
- "*"
7+
tags:
8+
- 'v[0-9]+.[0-9]+.[0-9]+*'
9+
pull_request:
910

1011
env:
1112
SERVICE_ACCOUNT: github@randamu-prod.iam.gserviceaccount.com

.github/workflows/rust-build-and-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
working-directory: ./blocklock-solidity
6161
run: npm ci
6262

63-
- name: blocklock-solidity - Build Solidity contracts-core
63+
- name: blocklock-solidity - Build Solidity contracts
6464
working-directory: ./blocklock-solidity
6565
run: npm run build:forge
6666

@@ -69,7 +69,7 @@ jobs:
6969
working-directory: ./randomness-solidity
7070
run: npm ci
7171

72-
- name: randomness-solidity - Build Solidity contracts-core
72+
- name: randomness-solidity - Build Solidity contracts
7373
working-directory: ./randomness-solidity
7474
run: npm run build:forge
7575

@@ -79,5 +79,5 @@ jobs:
7979
env:
8080
POLYGON_RPC_URL: ${{ secrets.POLYGON_RPC_URL }}
8181
with:
82-
working-directory: ./crates
82+
working-directory: .
8383
extra-cache-key: 'dcipher'

0 commit comments

Comments
 (0)