All of my deployments are reporting to have failed in Github Actions

I have noticed today that all of my deployments (a few envs across two repos) are all failing today with the same error. My fly configuration and app configuration/build have not changed since yesterday when we had successful deploys.

Is fly down?

The error in Github Actions looks like:

==> Creating release
--> release v165 created

--> You can detach the terminal anytime without stopping the deployment
==> Monitoring deployment
Error 1 error occurred:
	* Could not find App

And in each of my Github Action files, I am deploying the apps like:

steps:
      - uses: actions/checkout@v2
      - name: Setup Fly
        uses: superfly/flyctl-actions/setup-flyctl@master
      - name: Deploy
        run: flyctl deploy --app [my-app]

That looks like an auth failure. Have you changed anything about org membership recently? Does fly status -a <app> work for you locally?

@kurt nothing has changed in a while (a few months). When I run it locally it works.

ID      	PROCESS	VERSION	REGION	DESIRED	STATUS 	HEALTH CHECKS     	RESTARTS	CREATED    
03c42a86	app    	198    	syd   	run    	running	1 total, 1 passing	0       	16m40s ago

I’ll try in Github Actions.

@kurt that command works in Github Actions too.

ID      	PROCESS	VERSION	REGION	DESIRED	STATUS 	HEALTH CHECKS     	RESTARTS	CREATED   
03c42a86	app    	198    	syd   	run    	running	1 total, 1 passing	0       	20m6s ago

Interestingly I can see the releases in Fly.io and they are saying they are healthy. Is the bug perhaps that the Github Action for Fly is failing, but the releases deployments are working?

There is likely a bug with the latest version. You should be able to use an older version using the version input for the github action (see Workflow syntax for GitHub Actions - GitHub Docs) set to '0.0.366'

e.g.

- uses: superfly/flyctl-actions/setup-flyctl@master
  with:
    version: '0.0.366'

A release will go out soon to fix this. Sorry for the trouble!

No worries, thanks for the update :slight_smile:

Release 0.0.368 is out!

Awesome, the deployments are working again! Thanks :slight_smile: