You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi
I had a strange behavior when I tried to create a simple github-action for my golang app. the action is linting and building app and after upload the artifact to release notes.
The action is triggered by creating a new release. the issue is that Runner keep mentioning some old steps (Build skx/github-action-publish-binaries@master) that I removed from the workflow file.
# workflow namename: release# on eventson:
release:
types:
- created# jobsjobs:
Publish:
name: Generate cross-platform buildsruns-on: ubuntu-lateststeps:
- name: Checkout the repositoryuses: actions/checkout@v2
- name: Set up Gouses: actions/setup-go@v2with:
go-version: 1.16
- name: Install dependenciesrun: go mod download
- name: Lint and format coderun: go fmt ./... && go vet ./...
- name: Generate build filesrun: go build -o ./dist/ ./...
- name: Archive build filesrun: cd dist && tar -czvf build.tar.gz eircode
- name: Copy build-artifactsuses: skx/github-action-publish-binaries@masterenv:
GITHUB_TOKEN: ${{ secrets.TOKEN }}with:
args: "./dist/*.tar.gz"
actual behavior
Expected behavior
not executing this step
Runner Version and Platform
Version of your runner?
Linux
What's not working?
Please include error messages and screenshots.
Job Log Output
If applicable, include the relevant part of the job / step log output here. All sensitive information should already be masked out, but please double-check before pasting here.
Runner and Worker's Diagnostic Logs
If applicable, add relevant diagnostic log information. Logs are located in the runner's _diag folder. The runner logs are prefixed with Runner_ and the worker logs are prefixed with Worker_. Each job run correlates to a worker log. All sensitive information should already be masked out, but please double-check before pasting here.
The text was updated successfully, but these errors were encountered:
Describe the bug
Hi
I had a strange behavior when I tried to create a simple github-action for my golang app. the action is linting and building app and after upload the artifact to release notes.
The action is triggered by creating a new release. the issue is that Runner keep mentioning some old steps (Build skx/github-action-publish-binaries@master) that I removed from the workflow file.
To Reproduce
Steps to reproduce the behavior:
the repo is opensource:
https://github.com/soub4i/eircode/actions
the code:
actual behavior
Expected behavior

not executing this step
Runner Version and Platform
Version of your runner?
Linux
What's not working?
Please include error messages and screenshots.
Job Log Output
If applicable, include the relevant part of the job / step log output here. All sensitive information should already be masked out, but please double-check before pasting here.
Runner and Worker's Diagnostic Logs
If applicable, add relevant diagnostic log information. Logs are located in the runner's
_diag
folder. The runner logs are prefixed withRunner_
and the worker logs are prefixed withWorker_
. Each job run correlates to a worker log. All sensitive information should already be masked out, but please double-check before pasting here.The text was updated successfully, but these errors were encountered: