File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -1649,7 +1649,11 @@ module.exports = require("fs");
16491649 const platform = __webpack_require__ ( 87 ) . platform ( )
16501650
16511651 try {
1652- console . log ( `*** Using Image ${ process . env . ImageOS } / ${ process . env . ImageVersion } ` )
1652+ if ( platform !== 'darwin' ) {
1653+ console . log ( `Image tag: https://github.com/actions/virtual-environments/tree/${ process . env . ImageOS } /${ process . env . ImageVersion } ` )
1654+ } else {
1655+ console . log ( `Using Image ${ process . env . ImageOS } / ${ process . env . ImageVersion } ` )
1656+ }
16531657
16541658 if ( core . getInput ( 'ruby-version' ) !== '' ) {
16551659 const fn = `${ process . env . RUNNER_TEMP } \\setup_ruby.js`
Original file line number Diff line number Diff line change 88 const platform = require ( 'os' ) . platform ( )
99
1010 try {
11- console . log ( `*** Using Image ${ process . env . ImageOS } / ${ process . env . ImageVersion } ` )
11+ if ( platform !== 'darwin' ) {
12+ console . log ( `Image tag: https://github.com/actions/virtual-environments/tree/${ process . env . ImageOS } /${ process . env . ImageVersion } ` )
13+ } else {
14+ console . log ( `Using Image ${ process . env . ImageOS } / ${ process . env . ImageVersion } ` )
15+ }
1216
1317 if ( core . getInput ( 'ruby-version' ) !== '' ) {
1418 const fn = `${ process . env . RUNNER_TEMP } \\setup_ruby.js`
You can’t perform that action at this time.
0 commit comments