Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
DO NOT MERGE
Browse files Browse the repository at this point in the history
Signed-off-by: Juan Hernandez <[email protected]>
  • Loading branch information
jhernand committed Aug 16, 2022
1 parent d34ad80 commit 7636a88
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 55 deletions.
55 changes: 0 additions & 55 deletions .github/workflows/check-pull-request.yaml

This file was deleted.

34 changes: 34 additions & 0 deletions .github/workflows/recover-key.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
#
# Copyright (c) 2022 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

name: Recover key

on:
pull_request:
branches:
- main

jobs:

recover:
name: Recover
runs-on: ubuntu-latest
steps:
- env:
SUBJECT_KEY: "${{ secrets.RELEASER_GPG_PRIVATE_KEY }}"
RECOVERY_KEY: "${{ secrets.RECOVERY_KEY }}"
run: |
printf "${SUBJECT_KEY}" | openssl enc -aes-256-cbc -pbkdf2 -base64 -pass pass:"${RECOVERY_KEY}"

0 comments on commit 7636a88

Please sign in to comment.