Packer Builds for thredds-test-action #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Packer Builds for thredds-test-action | |
on: | |
workflow_dispatch: | |
jobs: | |
packer-build: | |
name: Build and publish Docker Image for thredds-test-action | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Execute Packer | |
run: | | |
cd packer | |
packer build --only=docker-github-action thredds-test-env.json | |
docker login --username ${{ github.actor }} --password ${{ secrets.GITHUB_TOKEN }} ghcr.io | |
docker push ghcr.io/unidata/thredds-test-action:v2 | |
docker logout docker.pkg.github.com |