Skip to content

Commit

Permalink
update references to the Moonbeam Foundation resources
Browse files Browse the repository at this point in the history
use dockeri hub and github urls from the Moonbeam Foundation
instead of PureStake
  • Loading branch information
noandrea committed Nov 13, 2023
1 parent 395fa80 commit 70c94d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ on:
default: "master"

jobs:

docker-moonbeam-tracing:
runs-on: ubuntu-latest
outputs:
Expand Down Expand Up @@ -46,7 +45,7 @@ jobs:
- name: Prepare
id: prep
run: |
DOCKER_IMAGE=purestake/moonbeam-tracing
DOCKER_IMAGE=moonbeamfoundation/moonbeam-tracing
DOCKER_TAG="${DOCKER_IMAGE}:${{ github.event.inputs.client_tag }}-${{ steps.get-last-spec-version.outputs.last_spec_version }}-${{ steps.get-sha.outputs.sha4 }}"
DOCKER_LATEST_TAG="${DOCKER_IMAGE}:${{ github.event.inputs.client_tag }}-${{ steps.get-last-spec-version.outputs.last_spec_version }}-latest"
echo ::set-output name=docker_tag::${DOCKER_TAG}
Expand All @@ -69,7 +68,7 @@ jobs:
run: |
mkdir build
CLIENT_TAG=${{ github.event.inputs.client_tag }}
CLIENT_IMAGE="purestake/moonbeam:$CLIENT_TAG"
CLIENT_IMAGE="moonbeamfoundation/moonbeam:$CLIENT_TAG"
docker create -ti --name dummy $CLIENT_IMAGE bash
docker cp dummy:/moonbeam/moonbeam build/moonbeam
docker rm -f dummy
Expand Down Expand Up @@ -119,4 +118,3 @@ jobs:
org.opencontainers.image.created=${{ steps.prep.outputs.created }}
org.opencontainers.image.revision=${{ github.sha }}
org.opencontainers.image.licenses=${{ github.event.repository.license.spdx_id }}
4 changes: 2 additions & 2 deletions scripts/import-tracing-runtime.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ else
echo "Get moonbeam snapshot..."
rm -rf tmp
mkdir tmp
git clone https://github.com/PureStake/moonbeam --depth 1 -b $GIT_REF $MOONBEAM_PATH
git clone https://github.com/moonbeam-foundation/moonbeam --depth 1 -b $GIT_REF $MOONBEAM_PATH
fi

# Copy relevant files
Expand All @@ -35,7 +35,7 @@ rm -rf tracing/$SPEC_VERSION/runtime/relay-encoder

echo "Run migration script"
cd scripts
cargo run -q --bin migrate-imported -- --dir ../tracing/$SPEC_VERSION --repo "https://github.com/PureStake/moonbeam" $GIT_DEP_REF
cargo run -q --bin migrate-imported -- --dir ../tracing/$SPEC_VERSION --repo "https://github.com/moonbeam-foundation/moonbeam" $GIT_DEP_REF
cd ..

echo "Running ./scripts/update-tracing-runtime-lock.sh $SPEC_VERSION ..."
Expand Down

0 comments on commit 70c94d5

Please sign in to comment.