-
-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inconsistent output between local run and action run #464
Comments
weird, are both the action and your local machine running linux? if not, which OSs are you using in each? |
running macos locally, linux github action |
created this repo to try and repro it https://github.com/caarlos0-graveyard/gorel-dir-glob-repro so far, got the same output on linux and macos with v2.0.0-pro (which is basically the same as v1.26.2-pro). #
# linux:
• adding file: dir/another/test as otherdir/test
• adding file: dir/another/testetest as otherdir/testetest
#
# macos:
• adding file: dir/another/test as otherdir/test
• adding file: dir/another/testetest as otherdir/testetest
|
on github action: • adding file: dir/another/test as otherdir/test
• adding file: dir/another/testetest as otherdir/testetest 🤔 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When I run the same command with the goreleaser github action, it places files into the archives in different locations than when I run it locally. Both environments are running the same version,
1.26.2-pro
.For a concrete example, I have a file located at
packaging/windows/connection/host_monitoring/metrics.yaml
in my repository.Goreleaser.yaml config snippet:
The command I'm running both locally and in the github action is
goreleaser release --prepare --clean --snapshot --verbose
Locally, I get this in the output
In the github action with the same
.goreleaser.yaml
I getWhy would the same command with the same config produce inconsistent results?
The text was updated successfully, but these errors were encountered: