Skip to content

Commit

Permalink
change path for the local deb repo
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorPopelyaev committed Nov 12, 2024
1 parent 4e74670 commit 4fd0bd7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/release/publish-deb-package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ set -e
repo="$1"
package="$2"
version="$3"
local_deb_repo_path="$4"

local_deb_repo_path="~/deb"
aws_deb_path="s3://releases-package-repos/deb"

# Add a deb to our apt repo
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/release-40_publish-deb-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
- name: Install awscli
run: |
python3 -m pip install awscli
# which awscli
which aws
- name: Checkout sources
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
Expand All @@ -112,9 +112,10 @@ jobs:
which reprepro
mkdir -p ~/deb/conf
cp ${{ github.workspace }}/.github/scripts/release/deb-conf-distributions ~/deb/conf/distributions
cp ${{ github.workspace }}/.github/scripts/release/deb-conf-distributions ${{ github.workspace }}/deb/conf/distributions
cat ${{ github.workspace }}/deb/conf/distributions
- name: Publish deb package
run: |
. ${{ github.workspace }}/.github/scripts/release/publish-deb-package.sh ${{ inputs.distribution }} polkadot 1.16.1
. ${{ github.workspace }}/.github/scripts/release/publish-deb-package.sh ${{ inputs.distribution }} polkadot 1.16.1 ${{ github.workspace }}/deb

0 comments on commit 4fd0bd7

Please sign in to comment.