deploy to Github Package Registry from Github Action
问题 I would like to deploy to a GitHub Package Registry from a GitHub Action of a public repo. I have a yml file for a workflow: name: My CI on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Install dependencies run: lein deps - name: Run tests run: lein test - name: Generate pom run: lein pom - name: Deploy run: mvn deploy I use Leiningen to build the project and generate a POM file. Then I would like to use Maven to deploy the artifact to the GitHub