diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 000000000..5e9e6903a --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,21 @@ +name: test aptly upload-lint +on: + push: + pull_request: + +permissions: + contents: read + +jobs: + aptly-upload: + name: upload + runs-on: ubuntu-latest + steps: + - name: Publish to aptly server + uses: neolynx/aptly-github-action/publish@v0.0.15 + with: + directory: buildout + aptly_server: https://aptly.info + aptly_user: ${{ secrets.APTLY_USER }} + aptly_password: ${{ secrets.APTLY_PASSWORD }} + diff --git a/action.yml b/action.yml deleted file mode 100644 index e3d29fa69..000000000 --- a/action.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: 'Hello World JS Action' -description: 'Greet someone and record the time' -inputs: - directory: - description: 'directory with debian packages' - required: true - default: 'build' -#outputs: -# time: -# description: 'The time we greeted you' -runs: - using: 'debian:bookworm-slim' - main: 'aptly-upload.sh' -