Skip to content

Commit 8dd343c

Browse files
wip
1 parent ebcfe6b commit 8dd343c

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
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: 6 additions & 5 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:
@@ -152,7 +153,7 @@ jobs:
152153

153154
- name: Create Manifests
154155
run: |
155-
REPOS=(cardano-node cardano-submit-api cardano-tracer)
156+
REPOS=(dmq-node)
156157
ARCHES=(amd64 arm64)
157158
158159
for REPO in "${REPOS[@]}"; do
@@ -196,7 +197,7 @@ jobs:
196197
(github.event_name == 'release' && github.event.release.tag_name == needs.prepare.outputs.LATEST_TAG) ||
197198
(github.event_name == 'workflow_dispatch' && github.ref == format('refs/tags/{0}', needs.prepare.outputs.LATEST_TAG))
198199
run: |
199-
REPOS=(cardano-node cardano-submit-api cardano-tracer)
200+
REPOS=(dmq-node)
200201
201202
for REPO in "${REPOS[@]}"; do
202203
IMAGE_REPO="ghcr.io/intersectmbo/$REPO"

0 commit comments

Comments
 (0)