This message was deleted.
# general
s
This message was deleted.
b
which version of the image are you using? latest?
h
I'm not specifying the version, so I assume it pull the latest. Here is my job config for deployment:
Copy code
jobs:
  deploy:
    name: Deploy to AWS
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
        with:
          fetch-depth: 1
      - uses: actions/setup-node@v1
        with:
          node-version: '12.x'
      - run: npm install
      - name: Run Makefile
        run: |
          make build
      - uses: <docker://pulumi/actions>
        with:
          args: up --yes -r
        env:
          PULUMI_CI: up
          PULUMI_ROOT: infra
          AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
          AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
          PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }}
b
we pushed a new version a few hours ago, if you rerun it does it work?
h
Let me verify
@billowy-army-68599 Now it's working. Thanks for the fix