Skip to content

Commit f7a471e

Browse files
wip
1 parent ebcfe6b commit f7a471e

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
ghc: ["9.6", "9.12"]
23-
os: [windows-latest]
23+
os: [ubuntu-latest]
2424

2525
env:
2626
# Modify this value to "invalidate" all cabal caches.

.github/workflows/release-ghcr.yaml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,10 @@ jobs:
6868
- name: Obtaining latest release tag
6969
id: latest-tag
7070
run: |
71-
LATEST_TAG=$(gh api repos/$GITHUB_REPOSITORY/releases/latest --paginate --jq '.tag_name')
72-
echo "LATEST_TAG=$LATEST_TAG" >> "$GITHUB_OUTPUT"
73-
echo "Latest release tag is: $LATEST_TAG"
71+
LATEST_TAG=0.2.0.0
72+
# LATEST_TAG=$(gh api repos/$GITHUB_REPOSITORY/releases/latest --paginate --jq '.tag_name')
73+
# echo "LATEST_TAG=$LATEST_TAG" >> "$GITHUB_OUTPUT"
74+
# echo "Latest release tag is: $LATEST_TAG"
7475
7576
7677
build:
@@ -82,11 +83,9 @@ jobs:
8283
arch:
8384
- name: amd64
8485
system: x86_64-linux
85-
- name: arm64
86-
system: aarch64-linux
8786
image:
8887
- name: dmq-node
89-
nix_key: docker-hydra
88+
nix_key: docker-dmq
9089

9190
steps:
9291
- name: Install Nix
@@ -152,8 +151,8 @@ jobs:
152151

153152
- name: Create Manifests
154153
run: |
155-
REPOS=(cardano-node cardano-submit-api cardano-tracer)
156-
ARCHES=(amd64 arm64)
154+
REPOS=(dmq-node)
155+
ARCHES=(amd64)
157156
158157
for REPO in "${REPOS[@]}"; do
159158
IMAGE_REPO="ghcr.io/intersectmbo/$REPO"
@@ -196,7 +195,7 @@ jobs:
196195
(github.event_name == 'release' && github.event.release.tag_name == needs.prepare.outputs.LATEST_TAG) ||
197196
(github.event_name == 'workflow_dispatch' && github.ref == format('refs/tags/{0}', needs.prepare.outputs.LATEST_TAG))
198197
run: |
199-
REPOS=(cardano-node cardano-submit-api cardano-tracer)
198+
REPOS=(dmq-node)
200199
201200
for REPO in "${REPOS[@]}"; do
202201
IMAGE_REPO="ghcr.io/intersectmbo/$REPO"

0 commit comments

Comments
 (0)