Skip to content

Commit 8c2bf96

Browse files
authoredJun 27, 2023
Rename to unionlabs (closes #311) (#312)

31 files changed

+467
-442
lines changed
 

‎.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
access-tokens: github.com=${{ secrets.GITHUB_TOKEN }}
2222
with:
2323
filter_builds: '((.top_attr == "checks" or .top_attr == "packages" or .top_attr == "devShells") and (.system == "x86_64-linux" or .system == "aarch64-linux") and (.attr != "bundle-mainnet" and .attr != "bundle-testnet" and .attr != "generate-evm-proto" and .attr != "generate-prover-proto" and .attr != "gen-proto" and .attr != "pre-commit-check" and .attr != "pre-commit" and .attr != "devnet" and .attr != "devnet-cosmos" and .attr != "devnet-evm" and .attr != "rust-proto" and .attr != "generate-rust-proto" and .attr != "go-vendor" and .attr != "evm-contracts" and .attr != "virtualisation-works") or (.attr == "evm-contracts" and .system == "x86_64-linux") or (.attr == "devnet" and .system == "x86_64-linux") or (.attr == "devnet-cosmos" and .system == "x86_64-linux") or (.attr == "devnet-evm" and .system == "x86_64-linux") or (.attr == "virtualisation-works" and .system == "x86_64-linux")) '
24-
24+

‎.github/workflows/release.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -114,26 +114,26 @@ jobs:
114114
imageid=$(docker images ${{ matrix.package }} --format "{{.ID}}:{{.Tag}}" | grep $dockerstring)
115115
imageid=$(echo ${imageid%%':'*})
116116
117-
docker tag $imageid localhost:5000/unionfi/${{ matrix.package }}:${{ github.ref_name }}-$arch
117+
docker tag $imageid localhost:5000/unionlabs/${{ matrix.package }}:${{ github.ref_name }}-$arch
118118
119119
120120
echo "${{ matrix.package }} for $arch is tagged"
121121
122-
docker push localhost:5000/unionfi/${{ matrix.package }}:${{ github.ref_name }}-$arch
122+
docker push localhost:5000/unionlabs/${{ matrix.package }}:${{ github.ref_name }}-$arch
123123
124-
echo "localhost:5000/unionfi/${{ matrix.package }}:${{ github.ref_name }}-$arch is pushed"
124+
echo "localhost:5000/unionlabs/${{ matrix.package }}:${{ github.ref_name }}-$arch is pushed"
125125
done
126126
127127
- name: Create Manifest
128128
run: |
129-
docker pull localhost:5000/unionfi/${{ matrix.package }}:${{ github.ref_name }}-aarch64-linux
130-
docker pull localhost:5000/unionfi/${{ matrix.package }}:${{ github.ref_name }}-x86_64-linux
129+
docker pull localhost:5000/unionlabs/${{ matrix.package }}:${{ github.ref_name }}-aarch64-linux
130+
docker pull localhost:5000/unionlabs/${{ matrix.package }}:${{ github.ref_name }}-x86_64-linux
131131
docker manifest create --insecure \
132-
localhost:5000/unionfi/${{ matrix.package }}:${{ github.ref_name }} \
133-
--amend localhost:5000/unionfi/${{ matrix.package }}:${{ github.ref_name }}-aarch64-linux \
134-
--amend localhost:5000/unionfi/${{ matrix.package }}:${{ github.ref_name }}-x86_64-linux \
132+
localhost:5000/unionlabs/${{ matrix.package }}:${{ github.ref_name }} \
133+
--amend localhost:5000/unionlabs/${{ matrix.package }}:${{ github.ref_name }}-aarch64-linux \
134+
--amend localhost:5000/unionlabs/${{ matrix.package }}:${{ github.ref_name }}-x86_64-linux \
135135
- name: Push Manifest to Local Registry
136-
run: docker manifest push localhost:5000/unionfi/${{ matrix.package }}:${{ github.ref_name }}
136+
run: docker manifest push localhost:5000/unionlabs/${{ matrix.package }}:${{ github.ref_name }}
137137
- uses: actions/checkout@v3
138138
with:
139139
lfs: true
@@ -146,7 +146,7 @@ jobs:
146146
echo "downloaded & installed regctl"
147147
148148
regctl registry set --tls disabled localhost:5000
149-
regctl image mod localhost:5000/unionfi/${{ matrix.package }}:${{ github.ref_name }} --to-oci --create ${{ github.ref_name }} --annotation org.opencontainers.image.description="$(cat $GITHUB_WORKSPACE/.github/container-descriptions/${{ matrix.package }}.txt)"
149+
regctl image mod localhost:5000/unionlabs/${{ matrix.package }}:${{ github.ref_name }} --to-oci --create ${{ github.ref_name }} --annotation org.opencontainers.image.description="$(cat $GITHUB_WORKSPACE/.github/container-descriptions/${{ matrix.package }}.txt)"
150150
151151
- name: Copy Manifest to GHCR
152152
run: |
@@ -155,7 +155,7 @@ jobs:
155155
156156
echo "Downloaded & installed skopeo"
157157
158-
skopeo copy --multi-arch=all --insecure-policy --src-tls-verify=false "docker://localhost:5000/unionfi/${{ matrix.package }}:${{ github.ref_name }}" "docker://ghcr.io/unionfi/${{ matrix.package }}:${{ github.ref_name }}"
158+
skopeo copy --multi-arch=all --insecure-policy --src-tls-verify=false "docker://localhost:5000/unionlabs/${{ matrix.package }}:${{ github.ref_name }}" "docker://ghcr.io/unionlabs/${{ matrix.package }}:${{ github.ref_name }}"
159159
160160
echo "Copied ${{ matrix.package }}:${{ github.ref_name }} multi-arch to GHCR"
161161

‎CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ In this guide, you will get an overview of the contribution workflow from openin
66

77
## Before you start working on a PR
88

9-
Before starting work on any code changes, make sure to start by creating an [issue](https://github.com/unionfi/union/issues) first. Once you've created an issue you can start discussing the implementation, challenges, and work with core members before starting on code contributions.
9+
Before starting work on any code changes, make sure to start by creating an [issue](https://github.com/unionlabs/union/issues) first. Once you've created an issue you can start discussing the implementation, challenges, and work with core members before starting on code contributions.
1010

11-
For more complex conversations, use the [discussions](https://github.com/unionfi/union/discussions). Usually, a discussion becomes one or more issues.
11+
For more complex conversations, use the [discussions](https://github.com/unionlabs/union/discussions). Usually, a discussion becomes one or more issues.
1212

1313
We evaluate the need for a PR based on:
1414

0 commit comments

Comments
 (0)
Please sign in to comment.