Skip to content

Jammy amd64 #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jan 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/RELEASE_REUSE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ on:
type: string
required: false
default: x86_64
dest_arch:
type: string
required: false
default: x86_64
rubyversion:
default: 2.7.2
type: string
Expand Down Expand Up @@ -100,7 +104,9 @@ jobs:

- name: publish debs
run: |
s3cmd get ${{inputs.s3root}}/*${{ steps.get_version.outputs.VERSION }}*${{ inputs.osnick }}*${{ inputs.arch }}.deb .
s3cmd get ${{inputs.s3root}}/redis-stack-server-7.0.6-RC2.${{ inputs.osnick }}.${{ inputs.arch }}.deb \
redis-stack-server-7.0.6-RC2.${{ inputs.osnick }}.${{ inputs.dest_arch }}.deb
ls
echo allow-preset-passphrase > ~/.gnupg/gpg-agent.conf
gpg-connect-agent reloadagent /bye
/usr/lib/gnupg/gpg-preset-passphrase -P '${{ secrets.GPG_PASSWORD }}' -c --preset ${{ steps.get_gpg_keygrip.outputs.GPG_KEYGRIP }}
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
uses: ./.github/workflows/RELEASE_REUSE.yml
with:
osnick: bullseye
dest_arch: amd64
s3root: s3://redismodules/redis-stack
s3publicreponame: packages.redis.io
secrets:
Expand Down Expand Up @@ -64,10 +65,12 @@ jobs:
GPG_PASSWORD: ${{secrets.GPG_PASSWORD}}
GPG_KEY: ${{secrets.GPG_KEY}}

# until we solve amd64 vs x86_64 forever, this should work
jammy-x86:
uses: ./.github/workflows/RELEASE_REUSE.yml
with:
osnick: jammy
dest_arch: amd64
s3root: s3://redismodules/redis-stack
s3publicreponame: packages.redis.io
secrets:
Expand All @@ -83,6 +86,7 @@ jobs:
with:
osnick: bionic
arch: arm64
dest_arch: arm64
s3root: s3://redismodules/redis-stack
s3publicreponame: packages.redis.io
secrets:
Expand All @@ -98,6 +102,7 @@ jobs:
with:
osnick: focal
arch: arm64
dest_arch: arm64
s3root: s3://redismodules/redis-stack
s3publicreponame: packages.redis.io
secrets:
Expand All @@ -113,6 +118,7 @@ jobs:
with:
osnick: jammy
arch: arm64
dest_arch: arm64
s3root: s3://redismodules/redis-stack
s3publicreponame: packages.redis.io
secrets:
Expand Down