diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index da71ddd9..f60a89e8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -7,10 +7,11 @@ jobs: name: Push Docker image to GitHub Packages runs-on: ubuntu-latest steps: - - name: Check out the repo - uses: actions/checkout@v2 - name: Push to GitHub Packages - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v1 with: - push: true - tags: rcos/telescope:latest + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + registry: docker.pkg.github.com + repository: rcos/telescope/telescope + tag_with_ref: true diff --git a/Cargo.lock b/Cargo.lock index 55f072d9..61cab2d1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3524,7 +3524,7 @@ dependencies = [ [[package]] name = "telescope" -version = "0.2.3" +version = "0.2.4" dependencies = [ "actix", "actix-files", diff --git a/Cargo.toml b/Cargo.toml index 99ee2bb2..3035d354 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "telescope" -version = "0.2.3" +version = "0.2.4" authors = [ "Antonia \"Nia\" Calia-Bogan " ]