Skip to content

kitek/decode-base64-into-file-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

decode-base64-info-file-action

Decode base64 value and save it into a file. It might be useful in cases when we need to restore a file with credentials from Secrets.

Inputs

encoded-value

Required Encoded value with base64.

destination-file

Required Path for destination file. All non-existing directories will be created recursively.

Example usage

- name: Restore firebase.json file
  uses: kitek/decode-base64-into-file-action@1.0
  with:
    encoded-value: ${{ secrets.WEB_FIREBASE_JSON }}
    destination-file: firebase.json