shiruken / internet-archive-upload

Upload files to an archive.org collection in your GitHub Action

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Inputs

  • access-key: Your archive.org access key
  • secret-key: Your archive.org secret key
  • identifier: The unique identifier of the archive.org item where the file will be stored
  • files: The file or folder path inside the action's filesystem to upload

Usage

Upload a single file.

name: Example action
jobs:
  job:
    name: Upload
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3

      - name: Upload file to archive.org
        uses: palewire/internet-archive-upload@v1
        with:
          access-key: ${{ secrets.IA_ACCESS_KEY }}
          secret-key: ${{ secrets.IA_SECRET_KEY }}
          identifier: your-item
          files: your-file.jpg

Upload a directory of files.

name: Example action
jobs:
  job:
    name: Upload
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3

      - name: Upload file to archive.org
        uses: palewire/internet-archive-upload@v1
        with:
          access-key: ${{ secrets.IA_ACCESS_KEY }}
          secret-key: ${{ secrets.IA_SECRET_KEY }}
          identifier: your-item
          files: your-files/

About

Upload files to an archive.org collection in your GitHub Action

License:MIT License


Languages

Language:Python 100.0%