Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
angerman committed Jan 18, 2022
1 parent 7b29f67 commit 5254e31
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
Binary file added .github/keys.zip.gpg
Binary file not shown.
Binary file added .github/pkg.zip
Binary file not shown.
17 changes: 15 additions & 2 deletions .github/workflows/publish.yml
Expand Up @@ -7,8 +7,21 @@ jobs:
Build-Overlay:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
- name: Checkout 🛎️
uses: actions/checkout@v2
- name: Build 🔧
run: |
mkdir $HOME/secrets
gpg --quiet --batch --yes --decrypt --passphrase="$KEYS_KEY" \
--output $HOME/secrets/keys.zip ${{ github.workspace }}/.github/keys.zip.gpg
unzip $HOME/secrets/keys.zip
unzip ${{ github.workspace }}/.github/pkg.zip
ls -lah .
- name: List files in the repository
run: |
ls -lah ${{ github.workspace }}
ls -lah ${{ github.workspace }}
# - name: Deploy 🚀
# uses: JamesIves/github-pages-deploy-action@v4.2.2
# with:
# branch: gh-pages # The branch the action should deploy to.
# folder: build # The folder the action should deploy.

0 comments on commit 5254e31

Please sign in to comment.